Skip to main content

How to make a calculator from a notepad

Instructions to follow
1)First open notepad
2)Type the following code;

@echo off
color fa
cls
:st
echo What would you want to do?
echo Add +
echo Subtract -
echo Multiply *
echo Divide /
set /p input=Enter =
If %input%==+ goto Add
If %input%==Add goto Add
If %input%==Subtract goto Subtract
If %input%==- goto Subtract
If %input%==* goto Multiply
If %input%==Multiply goto Multiply
If %input%==/ goto Divide
If %input%==Divide goto Divide
:da
cls
goto st

:Add
cls
set /p a=Enter first number to add  =
set /p b=Enter second number to add =
set /a c=a+b
echo[
echo  ------------------------------
echo %a%+%b%=%c%
pause>nul
cls
goto st

:Subtract
cls
set /p a=Enter first number to subtract  =
set /p b=Enter second number to subtract =
set /a c=a-b
echo[
echo  ------------------------------
echo %a%-%b%=%c%
pause>nul
cls
goto st
:Multiply
cls
set /p a=Enter first number to multiply  =
set /p b=Enter second number to multiply =
set /a c=a*b
echo[
echo  ------------------------------
echo %a%*%b%=%c%
pause>nul
cls
goto st
:Divide
cls
set /p a=Enter first number to Divide  =
set /p b=Enter second number to Divide =
set /a c=a/b
echo[
echo  ------------------------------
echo %a%/%b%=%c%
pause>nul
cls
goto st

                                                        Download The Following text:





Comments

Popular posts from this blog

How to Remove Powered by Blogger – Attribution Widget?

In this article, I will be demonstrating how to remove or hide attribution widget ‘Powered by Blogger’ in footer of blogger blogspot blogs.  Before going to the process,  backup your blogger template , while editing html code if anything goes wrong or template modified design doesn’t work or looks good you can restore from backed up template.  Here I have demonstrated you two methods for removing attribution widget. Some blogger templates may not support method 1 then you need to follow method 2 for successfully removing attribution widget. Method 1: Remove ‘Powered by Blogger’ by unlocking Attribution widget Step 1 : Go to your blog “Template” | click on “Edit HTML”. Step 2 : Here on drop-down “jump to widget” option and select Attribution 1 as shown below Step 3: After selecting Attribution 1 widget you will be able to see this line <b:widget id=’Attribution1′ locked=’true’ title=” type=’Attribution’>  on your blogger template. Step 5: Once done click on...

Top 7 Modules in Python Programming language | 2020

Python is a simple programming language yet of very high level and is very much popular. This days the use of python has gone very high and it is expected to be much higher in the upcoming days in the near future. So, today in this article we will be discussing about some modules in python language which are most to be learnt: NumPy: It helps to do basic mathematical operations and complex math with algebraic formulas, statistical operations,etc. It is a valuable python package and is important for machine learning. Pendulum: It helps to do complex coding involving dates and time and is broad form of datetime module. It also manages the time zone automatically hence, it is a replacement for the datetime module. Python imaging library: It makes easy to write codes that involves to open, read and manipulate or modify images in a variety of formats. The Pillow or PIL imaging library is good for importing, manipulation and exporting images. MoviePy: As pillow is to images, moviePy ...

Why should you learn Python programming language?

Python is a programming language developed by Guido Van Rossum. It is a very simple programming language so, you can learn Python without facing any issues. You are a beginner at programming can learn python. So, let's see top 7 reasons to learn python: Simple and popular: Python programming language is simple and very popular. Many significant platforms only support Python language. It also ranks top three as per TIOBE Index. Versatile:  It is a versatile language, i.e.; can we used to develop desktop applications, web pages and is considered best for AI and data science. Popularity: Many industries like YouTube, Amazon, Google, Facebook,etc. use this language. So, Python developers are very high in number. Moreover, the users of python are increasing day by day. Portable an extensible: Python course are portable and extensible as a code for Windows even run at Mac, Unix or Linux. Even the codes can be compiled in different languages like C++ or C. Graphical: The Python Computer G...