Я делаю очень простую программу калькулятора (я довольно плохо знаком с Java). Я использую пакет java.io.Console для ввода из командной строки, и мой код выглядит так:
import java.io.Console;
public class calculator {
public static void main(String args[]) {
Console console = System.console();
int exit = 1;
System.out.println("Calculator v1.0 by rulla101");
System.out.println(" ");
String inputselect = console.readLine("Type add, sub, mlt, or div to select operation: ");
if (inputselect == "add") {
//ADDING!!!
while(exit > 0) {
String input1a = console.readLine("Input number 1: ");
int a = Integer.parseInt(input1a);
String input2a = console.readLine("Input number 2: ");
int b = Integer.parseInt(input2a);
System.out.println("The answer is:");
System.out.println(a+b);
String exitstringa = console.readLine("Type 0 to exit, type 1 to add two more numbers: ");
int extseta = Integer.parseInt(exitstringa);
if(extseta == 0){
exit--;
}
}
}
else if (inputselect == "sub") {
//SUBTRACTING!
while(exit > 0) {
String input1s = console.readLine("Input number 1: ");
int c = Integer.parseInt(input1s);
String input2s = console.readLine("Input number 2: ");
int d = Integer.parseInt(input2s);
System.out.println("The answer is:");
System.out.println(c-d);
String exitstrings = console.readLine("Type 0 to exit, type 1 to subtract two more numbers: ");
int extsets = Integer.parseInt(exitstrings);
if(exitsets == 0){
exit--;
}
}
}
else if (inputselect == "mlt"){
//MULTIPLYING!!
while(exit > 0) {
String input1m = console.readLine("Input number 1: ");
int e = Integer.parseInt(input1m);
String input2m = console.readLine("Input number 2: ");
int f = Integer.parseInt(input2m);
System.out.println("The answer is:");
System.out.println(e*f);
String exitstringm = console.readLine("Type 0 to exit, type 1 to multiply two more numbers: ");
int extsetm = Integer.parseInt(exitstringm);
if(exitsetm == 0){
exit--;
}
}
}
else if (inputselect == "div"){
//DIVIDING!!
while(exit > 0) {
String input1d = console.readLine("Input number 1: ");
int g = Integer.parseInt(input1d);
String input2d = console.readLine("Input number 2: ");
int h = Integer.parseInt(input2d);
System.out.println("The answer is:");
System.out.println(g/h);
String exitstringd = console.readLine("Type 0 to exit, type 1 to divide two more numbers: ");
int extsetd = Integer.parseInt(exitstringd);
if(exitsetd == 0){
exit--;
}
}
}
}
}
Но когда я пытаюсь скомпилировать программу, я получаю это:
/Users/ethan/javafolder/calculator/calculator.java:58: cannot find symbol
symbol : variable exitsets
location: class calculator
if(exitsets == 0){
^
/Users/ethan/javafolder/calculator/calculator.java:83: cannot find symbol
symbol : variable exitsetm
location: class calculator
if(exitsetm == 0){
^
/Users/ethan/javafolder/calculator/calculator.java:106: cannot find symbol
symbol : variable exitsetd
location: class calculator
if(exitsetd == 0){
^
3 errors
Done
Я не понимаю ... рассматриваемые переменные ранее не определены или что-то в этом роде ... и я почти уверен, что они существуют в коде ... может кто-нибудь выявить ошибку?
(p.s. Я знаю, что это действительно громоздкий и раздутый, и я мог бы сделать это в два раза меньше строк, но терпите меня. Пожалуйста.)
-rulla101