bestcoder上面的题目,我发现它有个bug就是A过的题并不能查看源代码,所以为了方便记录整理到CSDN的云上了咯。 还有就是很多题目,你实在不知道为什么过不了,也是无法查看那些A过的人的代码,所以,这个也是一个令人"讨厌"的地方。
代码语言:javascript复制<span style="font-size:18px;">package com.test;
import java.util.*;
import java.io.*;
public class Main
{
public static void main(String [] args)
{
Scanner sc=new Scanner(System.in);
double d,x1,y1,x2,y2;
String result;
while(sc.hasNextDouble())
{
x1=sc.nextDouble();
y1=sc.nextDouble();
x2=sc.nextDouble();
y2=sc.nextDouble();
d=Math.sqrt((Math.pow(x1-x2, 2) Math.pow(y1-y2, 2)));
result= String .format("%.2f",d);
System.out.println(result);
}
}
}</span>