public class NewRoot {
public static void main(String[] arguments){
int number = arguments[0];
System.out.println("The square root of"
+ number
+ " is "
+ Math.sqrt(number)
);
}
}
eclipse显示错误
Type mismatch: cannot convert from String to int
即使我把225放在一个论点上。 我的代码出了什么问题?
答案 0 :(得分:0)
将String
转换为整数,
int number = Integer.parseInt(arguments[0]);