Monday, March 8, 2021

PRODUCT OF TWO NUMBERS USING BATCH FILE IN DOS

 A program to ask the user to give two numbers and then the program will compute the product of two given numbers using Batch file programming in DOS.

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

@ECHO OFF
echo.
echo PRODUCT OF TWO NUMBERS USING BATCH FILE IN DOS
ECHO.
echo. CREATED BY MR. JAKE R. POMPERADA,MAED-IT,MIT
echo.
ECHO Enter First Value:
SET /P a=
ECHO Enter Second Value:
SET /P b=

ECHO.
SET /A Product=%a%*%b%
ECHO The product of %a% and %b% is %Product%.
ECHO.
ECHO Press any key to exit.
PAUSE>NUL


No comments:

Post a Comment