HDU 2001 計算兩點間的距離
阿新 • • 發佈:2017-05-08
scanf 運用 保留 math.sqrt () imp 坐標 sin scrip Problem Description
輸入兩點坐標(X1,Y1),(X2,Y2),計算並輸出兩點間的距離。
Input 輸入數據有多組,每組占一行,由4個實數組成,分別表示x1,y1,x2,y2,數據之間用空格隔開。
Output 對於每組輸入數據,輸出一行,結果保留兩位小數。
Sample Input 0 0 0 1 0 1 1 0
Sample Output 1.00 1.41 分析:題目為簡單的基礎題,會運用sqrt開方函數。 AC源代碼(C語言):
#include <stdio.h> #include <string.h> #include<algorithm> #include <iostream> #include <math.h> int main() { double a, b, c, d; double result; while(scanf("%lf %lf %lf %lf", &a, &b, &c, &d) != EOF){ double x = (a-c) * (a-c); double y = (b-d) * (b-d); printf("%.2lf\n",sqrt(x+y)); } }
Java源代碼:
import java.util.Arrays; import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner sin=new Scanner(System.in); while(sin.hasNextDouble()){ double a, b, c, d; a = sin.nextDouble(); b = sin.nextDouble(); c= sin.nextDouble(); d = sin.nextDouble(); double x = (a-c) * (a-c); double y = (b-d) * (b-d); double result = Math.sqrt(x+y); String res = String .format("%.2f", result); System.out.println(res); } } }
HDU 2001 計算兩點間的距離