![]() |
|
[Batch] Calculator - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Coding (https://sinister.li/Forum-Coding--71) +--- Thread: [Batch] Calculator (/Thread-Batch-Calculator) |
[Batch] Calculator - 1234hotmaster - 01-31-2011 hi guys its a simple batch calculator which uses: + for addition - for subtraction / for division * for multiplication Code: @echo off
start www.hackcommunity.com
title Batch Calculator by 1234hotmaster
color 1f
:top
echo --------------------------------------------------------------
echo Welcome to Batch Calculator by 1234hotmaster
echo --------------------------------------------------------------
echo.
set /p sum=
set /a ans=%sum%
echo.
echo = %ans%
echo --------------------------------------------------------------
pause
cls
echo Previous Answer: %ans%
goto top
pause
exitto be honest i found this 6 months ago and was buried away in the heart of my system but since the GetAdmin posted the matrix which i also had the batch in the same dir as the calculator i thought i share these ![]() so i don't think i know where or when i got this code 6 months ago
|