Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
import java.util.Scanner; { public static void main(String[] args) { double num1 = 0; double num2 = 0; double ans = 0; String op = new String(); Scanner NumIn = new Scanner(System.in); Scanner OpIn = new Scanner(System.in); System.out.println("Would you like to 'add', 'subtract', 'multiply' or 'divide'?"); op = OpIn.nextLine(); OpIn.close(); System.out.println("What is the first number?"); num1=NumIn.nextDouble(); System.out.println("Enter the second number"); num2=NumIn.nextDouble(); if(op.equals("add")){ ans = num1 + num2; } if(op.equals("subtract")){ ans = num1 - num2; } if(op.equals("multiply")){ ans = num1 + num2; } if(op.equals("divide")){ ans = num1 + num2; } System.out.println("= " + ans); } } |