I'm currently toying around with making scripts using tcsh
and Ive noticed:
If you do division it only outputs as many significant figures as the arguments going in
i.e. ( the numbers are the entered arguments):
2/4 outputs 0
4/2 outputs 2
22/2 outputs 11
1/8 outputs 0
9/2 outputs 4
So how does one alter this so 1/8= 0.125, 2/4 = 0.5, 9/2 = 4.5 etc??