0_0_39492904_3602\Main.java:1: 错误: 需要';'
import java.util.Scanner
^
0_0_39492904_3602\Main.java:2: 错误: 需要'{'
public class TestObject
^
0_0_39492904_3602\Main.java:3: 错误: 需要';'
public static void main(String[] args)
^
0_0_39492904_3602\Main.java:7: 错误: 需要';'
int x1 = in.nextInt()
^
0_0_39492904_3602\Main.java:8: 错误: 需要';'
int y1 = in.nextInt()
^
0_0_39492904_3602\Main.java:9: 错误: 需要<标识符>
System.out.println("请输入第二个坐标点:")
^
0_0_39492904_3602\Main.java:9: 错误: 非法的类型开始
System.out.println("请输入第二个坐标点:")
^
0_0_39492904_3602\Main.java:9: 错误: 需要';'
System.out.println("请输入第二个坐标点:")
^
0_0_39492904_3602\Main.java:10: 错误: 需要';'
int x2 = in.nextInt()
^
0_0_39492904_3602\Main.java:11: 错误: 需要';'
int y2 = in.nextInt()
^
0_0_39492904_3602\Main.java:12: 错误: 需要';'
int distance = (int) Math.sqrt(Math.abs((x1 - x2)*(x1 - x2))+Math.abs((y1 - y2)*(y1 - y2))) System.out.println("两点间距离是:"+distance)
^
0_0_39492904_3602\Main.java:12: 错误: 需要<标识符>
int distance = (int) Math.sqrt(Math.abs((x1 - x2)*(x1 - x2))+Math.abs((y1 - y2)*(y1 - y2))) System.out.println("两点间距离是:"+distance)
^
0_0_39492904_3602\Main.java:12: 错误: 非法的类型开始
int distance = (int) Math.sqrt(Math.abs((x1 - x2)*(x1 - x2))+Math.abs((y1 - y2)*(y1 - y2))) System.out.println("两点间距离是:"+distance)
^
0_0_39492904_3602\Main.java:12: 错误: 需要')'
int distance = (int) Math.sqrt(Math.abs((x1 - x2)*(x1 - x2))+Math.abs((y1 - y2)*(y1 - y2))) System.out.println("两点间距离是:"+distance)
^
0_0_39492904_3602\Main.java:12: 错误: 需要';'
int distance = (int) Math.sqrt(Math.abs((x1 - x2)*(x1 - x2))+Math.abs((y1 - y2)*(y1 - y2))) System.out.println("两点间距离是:"+distance)
^
0_0_39492904_3602\Main.java:12: 错误: 非法的类型开始
int distance = (int) Math.sqrt(Math.abs((x1 - x2)*(x1 - x2))+Math.abs((y1 - y2)*(y1 - y2))) System.out.println("两点间距离是:"+distance)
^
0_0_39492904_3602\Main.java:12: 错误: 解析时已到达文件结尾
int distance = (int) Math.sqrt(Math.abs((x1 - x2)*(x1 - x2))+Math.abs((y1 - y2)*(y1 - y2))) System.out.println("两点间距离是:"+distance)
^
17 个错误
|