: Hi I Have to write a pascal program, that can be used as a calculator to perform any of the 4 basic arithmetic functions(addiotion, multiplication, subtraction and division for any two integers ata a time!
: Can anyone help??
:
You need to ask the user 3 things: the 2 integers and the operation. This is best done using the Readln() statement. Then you use an if-then-else statement to perform the actual calculation. The final part is to show the result to the user using a Writeln() statement.
Hint: you might also want to use Write() to show, which piece of information the user is entering.