I printed the value 61109.016833, but I'd like value 61,109....
Thanks
1 Answer
0
In the format statements below, the number after the comma is the number of digits to print after the decimal.
format /rd 8,0;
print 61109.016833;
// Make the field width 12 characters
// still truncate
format /rd 12,0;
print 61109.016833;
Your Answer
1 Answer
0
In the format statements below, the number after the comma is the number of digits to print after the decimal.
format /rd 8,0;
print 61109.016833;
// Make the field width 12 characters
// still truncate
format /rd 12,0;
print 61109.016833;