Even though theres a calculator tool, I thought it would be cool to make my own. It only does simple things like First Number + Second Number, so you can't add on, but personally I think it's cool.
To try it out copy and paste the following on notepad, and click SaveAs and name it "Something.bat"
Oh and my real name is Joseph Wilson :P
----------------------------------------------------------------------------------------------------------------------------------
@echo off
title Calculator
color 0f
goto Title
:Main
cls
echo Invalid command, only use the number
pause >nul
:Title
cls
echo -------------------------------------
echo - Calculator -
echo - By Joseph wilson AKA Allath-
echo -------------------------------------
echo 1) Addition
echo 2) Subraction
echo 3) Division
echo 4) Mulitplication
set /pm=:
if %m%== 1 goto Add
if %m%== 2 goto Sub
if %m%== 3 goto Div
if %m%== 4 goto Mul
goto Main
:Add
cls
echo First Number + Second Number
Set /p A1=First Number:
set /p A2=Second Number:
set /A sum=%A1% + %A2%
Echo %A1% + %A2% = %Sum%
Pause>nul
goto Title
:Sub
cls
echo First Number - Second Number
Set /p B1=First Number:
set /p B2=Second Number:
set /A sum=%B1% - %B2%
Echo %B1% - %B2% = %Sum%
Pause>nul
goto Title
:Div
cls
echo First Number / Second Number
Set /p B1=First Number:
set /p B2=Second Number:
set /A sum=%B1% / %B2%
Echo %B1% / %B2% = %Sum%
Pause>nul
goto Title
:Mul
cls
echo First Number * Second Number
Set /p B1=First Number:
set /p B2=Second Number:
set /A sum=%B1% * %B2%
Echo %B1% * %B2% = %Sum%
Pause>nul
goto Title