What's new

Easily create a calculator from notepad --> for fun

zeal

De Techizard
a user just posted this now in a facebook group and when I tried it I was like wow wow wow  ??? ??? ??? ??? ??? Now to do this just copy the lines of code below paste it in your notepad and save it as myfuncalcutor.bat ==> now locate myfuncalcutor.bat from your pc to have a wow calculator created by you
2yxhvl4.jpg


Code:
@echo off
title Batch Calculator by
(your name)
color 0c
:top
echo
?????????????
echo -Welcome to Batch
Calculator by *(your
name)!-
echo
?????????????
echo Enter your operand
echo.
set /p sum=
set /a ans=%sum%
echo.
echo = %ans%
echo
?????????????????????
pause
cls
echo Previous Answer:
%ans%
goto top
pause
exit


your opinion
 
Top