如何在这里输入用户?

时间:2016-07-24 05:42:55

标签: java

以下是代码:

import comp102x.IO;

public class CalculatorEx01 {
    public static void multiply() {

// Please write your code after this line


System.out.print("Enter an integer, x: ");
 int x =IO.inputInt();


System.out.print("Enter an integer, y: ");
 int y = IO.inputInt();
System.out.print("Answer = "+ (x*y));
 }
}

这些错误意味着什么?

[ERROR]找不到符号,符号:方法inputInt(),location:class comp102x.IO。

[ERROR]找不到符号,符号:方法inputInt(),location:class comp102x.IO。

2 个答案:

答案 0 :(得分:0)

如何使用Scanner?

<c:set var="startIndex" scope="page" value="0"/>
<c:set var="endIndex" scope="page" value="12"/>

<select name="milestone_count" id="milestone_count">
    <option value="">-select-</option>
    <c:forEach begin="${startIndex}" end="${endIndex}" step="1" var="index">
        <option value="${index}">${index}</option>
    </c:forEach>
</select>

答案 1 :(得分:0)

您正在使用的功能(方法) inputInt() 您没有在任何地方定义或在您使用的导入类中不存在,这是错误试图告诉您的。