ok, im making a basic program in pascal. like a text based calculator (i dont know how to make GUIs) so lets say i have a peice of code like this:
program test;
var
A,B,C:real;
begin
writeln('enter the first number');
readln(A);
writeln('enter the second number');
readln(B);
C:=A/B;
writeln('your answer is: ',C);
End.
when i do this, it displayes the decimel in scientific notation (EX 50.00 woiuld be 5.000000000E+001) witch alot of people dont know how to read scientific notation. is there anyway to convert this into a decimel that people are used to like 104.00 ?