step 1: Open your Notepad
step 2: Then type below coding
Coding:
@echo off
title My Calculator v 2.0
color E
:top
echo --------------------------------------------
echo Welcome to The My Calculator v 2.0
echo type your math problems below
echo --------------------------------------------
set /p equation=
set /a ans= %equation%
cls
echo %ans%
pause > Nul
Save as: Calculator.bat
Comments
Post a Comment