Skip to main content

Featured

WIN ALL ACTEVETED LIFETIME

  Search for: Recent Posts Simple trick to install Windows 11 on an old PC Easy ways to activate Windows 11 for FREE without a product key Remove “You may be a victim of software counterfeiting” notification Windows Defender detects my scripts as “HackTool:BAT/AutoKMS” Quickly convert Windows Server Evaluation edition to the retail one Easiest way to remove the Windows watermark from your screen Categories Computer Tips Microsoft Software Products 2 ways to activate Windows 10 for FREE without additional software Posted by  Always Smile   in  Microsoft Software Products  /  Last updated on  August 26, 2021 As you know, Microsoft notified Windows 10 is “the last version of Windows” and explained that they will be focused on the development of powerful and new features under the guise of software updates instead of building a new version. This means there will be no Windows 11 or 12 in the future(*). So if you are thinking about an upgrade, this is the b...

 @echo off

title My First Calculator
color 0a
:top
cls
echo Welcome to Batch Calculator
set /p fn=Please enter first number:
set /p sn=Now enter second number:
set /p math=What you what to do, type any of the operator ( -, +, * or /):
set /a ans=%fn%%math%%sn%
echo Your answer is: %ans%
pause>nul
echo Done!
echo Press any key to start again!
pause>nul
goto top

Comments

Popular Posts