Home » Programming » Java Programming » How To Make A Simple Calculator in Java

9 years ago (Jul 03, 2015) 2,769 views

How To Make A Simple Calculator in Java

Category: Java Programming, Programming Tags: , by

Hello Guys.. This is my First Tutorial in  New Trickbd. I am Starting my Tutorial With Java Programming.

If You Want To Start Java Programming Then At First You Need To Download Netbeans Or Eclipse IDE

Go To

Download Netbeans IDE

From Here Download Netbeans.  Download Java SE for Standard Edition Or If You Want To Work With All Platforms  Download All

After Download Install Netbeans IDE

Now Go To File>>New Project>>Java>>Java Application

Now Give Your Project Name. I am Showing You a Simple Calculator. This is Very Beginning And It will Work in Java Console. It is Not A Graphical Software. Later I Will Show You Java Desktop And Mobile Software Making

So Project Name Calculator. Click Next. A White Window Will be Opned. Remove All Code And Paste This Code

 

import java.util.Scanner;
public class Calculator {

    public static void main(String[] args) {
        Scanner input=new Scanner(System.in);
        double a,b;
        System.out.println(“Enter 1st Number=”);
        a=input.nextDouble();
        System.out.println(“Enter 2nd Number=”);
        b=input.nextDouble();
        System.out.println(“Enter + For Add=”);
                System.out.println(“Enter – For subtract=”);
                System.out.println(“Enter * For multiplication=”);
                System.out.println(“Enter / For divition=”);
        char c;
        System.out.println(“Enter Character=”);
        c=input.next().charAt(0);
        switch(c)
        {
        case ‘+’:
            System.out.println(“Addition Is=”+(a+b));
            break;
        case ‘-‘:
            System.out.println(“Subtraction Is=”+(a-b));
            break;
        case ‘*’:
            System.out.println(“Multiplication Is=”+(a*b));
            break;
        case ‘/’:
            System.out.println(“Divition Is=”+(a/b));
            break;
            default:
                System.out.println(“Invalid Input”);
                break;
        }
        
        

    }

}

 

Now  Go to Run And Click Run File. In Below Output Console Your Program Will be Started To Run. Give Two Number. Then Give Operator And You Will Show Your Calculated Output.

 

No More Today. Happy Coding    🙂

About Post: 134

Shawon

Hi, I Am Shawon. I Am A Learner

31 responses to “How To Make A Simple Calculator in Java”

  1. … [Trackback]

    […] Read More Infos here: en.trickbd.com/make-simple-calculator-java/688 […]

  2. … [Trackback]

    […] Informations on that Topic: en.trickbd.com/make-simple-calculator-java/688 […]

  3. … [Trackback]

    […] Informations on that Topic: en.trickbd.com/make-simple-calculator-java/688 […]

  4. … [Trackback]

    […] Read More here: en.trickbd.com/make-simple-calculator-java/688 […]

  5. … [Trackback]

    […] Read More here: en.trickbd.com/make-simple-calculator-java/688 […]

  6. … [Trackback]

    […] There you will find 64410 more Infos: en.trickbd.com/make-simple-calculator-java/688 […]

  7. … [Trackback]

    […] Read More Infos here: en.trickbd.com/make-simple-calculator-java/688 […]

  8. steroid buy says:

    … [Trackback]

    […] There you will find 27092 more Infos: en.trickbd.com/make-simple-calculator-java/688 […]

  9. cunt says:

    … [Trackback]

    […] Informations on that Topic: en.trickbd.com/make-simple-calculator-java/688 […]

Leave a Reply