我是java新手,我正在为romanCalculator做这个任务。 我目前正在使用计算部分,但我遇到了一些要求的规则问题。
如果输入不正确,则必须打印错误。
所以这是规则之一,这是唯一可能的输入。
<possible Roman number> <operator> <possible Roman number>
OR
<possible Roman number> <operator> <possible Roman number>
OR
.
前两个很容易理解,而且。是退出该计划。
这就是我所知道的所有事情:
Scanner in = new Scanner(System.in);
String firstRoman = in.next();
String operator = in.next();
String secondRoman = in.next();
它只询问一次,只有一种形式的输入。 我无法弄清楚如何将其应用于所要求的内容,我感谢任何帮助。谢谢!
以下是一个例子:
\begin{ipoutput} XX \end{ipoutput}
\begin{ipinput} *xii
\begin{ipinput} /vi \end{ipinput}
\begin{ipoutput} XL
\begin{ipoutput} MCDXLV \end{ipoutput}
\begin{ipinput} .
答案 0 :(得分:1)
Scanner in = new Scanner(System.in);
String input = "";
System.out.println("Enter your roman numbers\nEx: X + V\n:");
while(!(input = in.nextLine()).equals("."))
{
//assuming splitting the input around whitespace we can do the following
String[] userInput = input.split("\\s+");
if(userInput.length == 3)
{
String firstRoman = userInput[0];
String operator = userInput[1];
String secondRoman = userInput[2];
if(firstRoman.matches("[MCDXLV]+") && operator.matches("\\+|\\-") && secondRoman.matches("[MCDXLV]+"))
{
//we have some valid things to work with let's continue
System.out.println("Valid input - " + input);
}
else{
System.out.println("Invalid input - " + input);
}
//do your thing
}
else{
System.out.println("Invalid input - " + input);
}
System.out.println("Enter your roman numbers\nEx: X + V\n:");
}