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

9 years ago (Jul 03, 2015) 2,765 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. Rana says:

    Nice post bro.. But without advanced java programmer no one can get that

  2. Shawon Shawon says:

    If You Know at least One Programming Language Like C Then It will be quite easy. @Rana

  3. credit score says:

    … [Trackback]

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

  4. minibus hire says:

    … [Trackback]

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

  5. used cars says:

    … [Trackback]

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

  6. exteria says:

    … [Trackback]

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

  7. ICQ Chat says:

    … [Trackback]

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

  8. #EE6363 says:

    … [Trackback]

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

  9. … [Trackback]

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

  10. sekiz izle says:

    … [Trackback]

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

  11. … [Trackback]

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

  12. yesim aktas says:

    … [Trackback]

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

  13. … [Trackback]

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

  14. … [Trackback]

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

  15. … [Trackback]

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

  16. aminevladi says:

    … [Trackback]

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

  17. … [Trackback]

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

  18. … [Trackback]

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

Leave a Reply