如果我运行我的计算器,我希望它开始使用给定的参数自动计算,例如 4+4-2。当没有参数时,他只是要求用户插入数字(扫描仪)。这是我的代码。因此,如果没有 args,扫描器将要求用户插入某些内容,则需要将 args 分配给我的 inputString。
主要的
package com.haynespro.calculator;
import java.util.Scanner;
public class CharAtExample {
public static void main(String[] args) {
for (String arg : args) {
System.out.println(arg);
}
// inputString with scanner
String inputString = "0";
inputString = inputString.replace(",", "");
Scanner userInput = new Scanner(System.in);
System.out.print("please insert your calculations: ");
inputString = userInput.next();
userInput.close();
Calculator calculator = new Calculator();
calculator.startCalculator(inputString);
}// end of main
}// end of class
相关分类