Advertisement
ZazoTazo

do while calculator

Jun 29th, 2019
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.71 KB | None | 0 0
  1. package com.company;
  2.  
  3. import java.util.*;
  4.  
  5. public class Main {
  6.  
  7.     public static void main(String[] args) {
  8.     Scanner input = new Scanner(System.in);
  9.         int choice;
  10.         int a, b;
  11.  
  12.         do {
  13.             System.out.println("Select an operation: \n1. Addition\n2. Subtraction" +
  14.                     "\n3. Multiplication\n4. Division \n5. Exit");
  15.             System.out.print("Choice: ");
  16.             choice = input.nextInt();
  17.  
  18.             if(choice == 1){
  19.                 System.out.print("First number: ");
  20.                 a = input.nextInt();
  21.                 System.out.print("Second number: ");
  22.                 b = input.nextInt();
  23.                 System.out.println("Sum: " + (a+b));
  24.             }
  25.             if(choice == 2){
  26.                 System.out.print("First number: ");
  27.                 a = input.nextInt();
  28.                 System.out.print("Second number: ");
  29.                 b = input.nextInt();
  30.                 System.out.println("Sum: " + (a-b));
  31.             }
  32.             if(choice == 3){
  33.                 System.out.print("First number: ");
  34.                 a = input.nextInt();
  35.                 System.out.print("Second number: ");
  36.                 b = input.nextInt();
  37.                 System.out.println("Sum: " + (a*b));
  38.             }
  39.             if(choice == 4){
  40.                 System.out.print("First number: ");
  41.                 a = input.nextInt();
  42.                 System.out.print("Second number: ");
  43.                 b = input.nextInt();
  44.                 System.out.println("Sum: " + (a/b));
  45.             }
  46.             if(choice == 5){
  47.                 System.out.println("Program will terminate.");
  48.                 System.exit(0);
  49.             }
  50.         }while(true);*/
  51.     }
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement