Answer to Question #24118 in Programming & Computer Science for monami
Create a batch file program that performs 4 mathematical operations such as addition, subtraction, multiplication and division.
The numbers to be entered must have 1 whole number and with 2 decimal points.
The output must be in the center of the screen.
1
2013-02-13T11:17:16-0500
@echo off
rem DOS batch language doesn't support floating point operations
:calc
cls
echo Enter mathematical expression:
set /p expression=
set /a result=%expression%
set result= & %result%
echo %result:~-40%
pause
goto calc
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment