Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.68 KB | None | 0 0
  1. class Calculator {
  2.  
  3.     public static void main(String[] args) {
  4.         /**
  5.          * Lecimy z koksem.
  6.          *
  7.          * Let's switch into english - each developer needs to write his code in english :)
  8.          *
  9.          * Your task has some things that you need to care about.
  10.          *
  11.          * 1. You need to print "menu" of your program. What user can do.
  12.          * 2. User is able to choose one option from: adding, substraction, multiplication and division
  13.          *    Use switch-case statement ;)
  14.          * 3. After making choice, user should put 2 numbers for operation.
  15.          * 4. Program should present result of selected action.
  16.          */
  17.  
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement