我不懂哪里出错了
没有main方法。怎么会输出(system。。。。)成功
public static void main(String []args){
}
老哥
public class Week {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
double num = sc.nextDouble();
if(num<0){
System.out.println("error");
}else{
System.out.printf("%.3f",Math.sqrt(num));
}
}
}
缺少 public static void main(String[] args) {这句话
Scanner sc = new Scanner(System.in);
double num = sc.nextDouble();
if(num<0){
System.out.println("error");
}else{
System.out.printf("%.3f",Math.sqrt(num));
}
//去掉你的括号 double num = sc.nextDouble();后面
你的class名字是不是少了一个*号,
没有main方法,没有入口,怎么输出