A simple program to ask the user to give two numbers and then the program will compute the addition and product of two numbers using functions in Pascal programming language.
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 in 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.Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGgThank you very much for your support.
Program Listing
Program Addition_Product;
Uses Crt;
Var X,Y : Integer;
Function Addition(X,Y : Integer) : Integer;
Begin
Addition := (X+Y);
End;
Function Product(X,Y : Integer) : Integer;
Begin
Product := (X*Y);
End;
Begin
Clrscr;
Writeln;
Writeln;
Write('Addition and Product of Two Numbers Using Functions in Pascal');
Writeln;
Writeln;
Write('Enter First Value : ');
Readln(X);
Write('Enter Second Value : ');
Readln(Y);
Writeln;
Writeln;
Write('The sum of ' ,X, ' and ',Y, ' is ',addition(x,y),'.');
Writeln;
Write('The product of ' ,X, ' and ',Y, ' is ',product(x,y),'.');
Writeln;
Writeln;
Write('End of Program');
Writeln;
Readln;
End.