• About
  • Contact

Things For Computers

  • Home
  • Earn Money
    • Free Lance
    • 13 Trusted Sites to Make Money
  • Tricks
    • Faceook Tricks
    • Computer Tricks
    • Internet Tricks
    • Blogger Tricks
    • Chrome Tricks
    • Firefox Tricks
    • Funny Tricks
    • Google Tricks
    • Hacking Tricks
    • Notepad Tricks
    • Virus Tricks
    • Youtube Tricks
    • Whatsup Tricks
    • Amazon Tricks
    • Alexa Tricks
  • Free Internet
    • Mobilink Tricks
    • Zong Tricks
    • Telenor Tricks
    • Ufone Tricks
    • Warid Tricks
    • Airtel Tricks
  • Softwares
    • Latest Softwares
    • Utility Softwares
    • Computer Software
  • Blogging
    • Blogging Tips
    • Blogger Tricks
    • Blogger Widgets
    • Blogger Templates
Home » Tips-Tricks » How We Can Create Our Own Calculator Using Without any Software

How We Can Create Our Own Calculator Using Without any Software

Hasan
Add Comment
Tips-Tricks

Batch files are text files that contain a sequence of commands commonly used in system command prompt to perform various computer operations like starting programs or running system utilities, etc. In Disk Operating System (DOS) and Windows, batch files are intended to be executed by the command explainer. There are many computer operations that can be performed by using these .bat files. In this article we will know how we can create our own calculator by writing a few commands.

Open notepad file or any other text editor then Copy & Paste the following code into the notepad:

@ECHO OFF
color a
title My Calculator
pause
ECHO ---------------------------------------- -------
ECHO * = MULTIPLY
ECHO + = ADD
ECHO - = SUBTRACT
ECHO / =DIVIDE
ECHO ---------------------------------------- -------
pause

:loop
echo.
echo ---------------------------------------- -------
SET /p UDefine=
SET /a UDefine=%UDefine%
ECHO =
ECHO %UDefine%
ECHO.
goto loop
 
Then save it as “calc.bat” where “.bat” is extension for batch files. Now go to your save location and double click on the batch file icon (Clac), now open your own Calculator in command prompt window.
Calculator in command prompt

You can also convert “.bat” to “.exe” by using “.bat to .exe converter software”. Please follow the link below to download this software. 

http://www.f2ko.de/downloads/Bat_To_Exe_Converter.zip

Enjoy........@@@
Tweet
How We Can Create Our Own Calculator Using Without any Software Title : How We Can Create Our Own Calculator Using Without any Software
Description : Batch files are text files that contain a sequence of commands commonly used in system command prompt to perform various computer operations...
Rating : 5

0 Response to "How We Can Create Our Own Calculator Using Without any Software"

← Newer Post Older Post → Home
Subscribe to: Post Comments (Atom)

Back to top!