URI:
   DIR Return Create A Forum - Home
       ---------------------------------------------------------
       Arti-X Forums
  HTML https://artixsoft.createaforum.com
       ---------------------------------------------------------
       *****************************************************
   DIR Return to: Downloads
       *****************************************************
       #Post#: 15--------------------------------------------------
       Batch File Calculator
   DIR By: Artix
       Date: February 8, 2013, 12:34 pm
       ---------------------------------------------------------
       Here is a simple calculator in batch.
       Here's the code:
       --- Code ---
       
       @echo off
       title Batch Calculator
       color 0a
       :start
       echo
       --------------------------------------------------------------
       echo Welcome to the Batch Calculator
       echo
       --------------------------------------------------------------
       echo.
       set /p sum=
       set /a ans=%sum%
       echo.
       echo = %ans%
       echo
       --------------------------------------------------------------
       pause
       cls
       echo Previous Answer: %ans%
       goto start
       pause
       exit
       --- End Code ---
       This calculator accepts these commands:
       2+2
       2-2
       2*2
       2/2
       Have fun!
       *****************************************************
       Page 1 of 1