Dear All,
Please help me out the following issue.
Input:
data a;
input a ;
datalines;
9
34
45
64
;
output;
9.00
34.0
45.0
64.0
I can convert the data using put function to character (ex: put(a,8.1);
or i can display the value with format 8.1;
I just want to store the value with decimal value Zero to the integers ( i.e 34 to 34.0)
Could you please suggest me is ther any other way to solve this issue.
Thanks In Advance.
Please help me out