1234567891011121314151617181920212223242526 |
-
-
- /**
- * Created by leon on 2/9/18.
- */
- public class MainApplication {
- public static void main(String[] args) {
-
- double Display = 0;
- int num_system = 1;
- double memory = 0;
-
- Console.println("Welcome to my calculator!");
- Console.println("Choose your option : ");
-
- String s = Console.getStringInput("Enter a string");
-
- while (s != "quit") {
-
- Integer i = Console.getIntegerInput("Enter an integer");
- Double d = Console.getDoubleInput("Enter a double.");
- }
-
- }
- }
|