MainApplication.java 586B

1234567891011121314151617181920212223242526
  1. /**
  2. * Created by leon on 2/9/18.
  3. */
  4. public class MainApplication {
  5. public static void main(String[] args) {
  6. double Display = 0;
  7. int num_system = 1;
  8. double memory = 0;
  9. Console.println("Welcome to my calculator!");
  10. Console.println("Choose your option : ");
  11. String s = Console.getStringInput("Enter a string");
  12. while (s != "quit") {
  13. Integer i = Console.getIntegerInput("Enter an integer");
  14. Double d = Console.getDoubleInput("Enter a double.");
  15. }
  16. }
  17. }