Advertisement
AMaster

Adder Java Code CV

Feb 19th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Adder{
  4.  
  5. public static void main(String[] args){
  6. System.out.println("Hi I`m The Greatest Calculator Ever");
  7. System.out.println("Enter Two Numbers And i`ll Add them Together");
  8. Scanner jim = new Scanner(System.in);
  9. int first = jim.nextInt();
  10. System.out.println("Plus");
  11. int second = jim.nextInt();
  12. int added = first + second;
  13. System.out.println("Answer");
  14. System.out.println(added);
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement