A simple program that I wrote using Pascal that will ask the user to give the temperature in Celsius and then it will convert it in Fahrenheit equivalent.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.My mobile number here in the Philippines is 09173084360.
Program Listing
Program celsius_to_fahrenheit;
Uses Crt;
Var
Choice : Char;
Celsius : Integer;
Procedure convert_fahrenheit(var celsius : integer);
Var
Fahrenheit : real;
Begin
Fahrenheit:= (9/5) * celsius + 32;
writeln('The Fahrenheit is ',Fahrenheit:8:4);
End;
Begin
Clrscr;
Choice := 'Y';
Write('Celsius To Fahrenheit Converter');
Writeln;
Writeln;
While upcase(Choice) = 'Y' Do
Begin
Writeln;
Write('Enter temperature in Celsius : ');
Readln(Celsius);
Writeln;
convert_fahrenheit(Celsius);
Write('Continue [Y/N] ');
readln(choice);
Writeln;
End;
Writeln;
Write('End of Program');
Writeln;
Readln;
End.