標題:
106 基本認識-計算座標
[打印本頁]
作者:
鄭繼威
時間:
2023-6-3 12:11
標題:
106 基本認識-計算座標
本帖最後由 鄭繼威 於 2023-11-25 14:20 編輯
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,讓使用者
輸入四個整數
,依序分別為點及點的座標值,接著
計算兩點距離
並輸出(四捨五入至小數點後第二位)。
兩點距離公式:
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
四個整數
輸出說明
計算兩點座標距離(四捨五入至小數點後第二位)
範例輸入
3
2
4
-6
範例輸出
8.06
本帖隱藏的內容需要回復才可以瀏覽
作者:
陳宥霖
時間:
2023-6-3 14:47
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x1,x2,y1,y2;
cin>>x1>>x2>>y1>>y2;
printf("%.2f",sqrt(pow((x1-x2),2)+pow((y1-y2),2)));
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2023-6-3 14:49
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x1,x2,y1,y2;
cin>>x1>>x2>>y1>>y2;
printf("%.2f",sqrt(pow((x1-x2),2)+pow((y1-y2),2)));
return 0;
}
複製代碼
作者:
李函庭
時間:
2023-6-3 14:49
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c,d;
cin>>a>>b>>c>>d;
printf("%.2f",sqrt((pow((a-b),2)+pow((c-d),2))));
return 0;
}
複製代碼
作者:
陳泓亦
時間:
2023-6-3 14:53
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
int x1,x2,y1,y2;
cin>>x1>>x2>>y1>>y2;
printf("%.2f",sqrt(pow((x2-x1),2)+pow((y2-y1),2)));
system("pause");
return 0;
}
複製代碼
作者:
翁川祐
時間:
2023-6-3 14:54
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x1,x2,y1,y2;
cin>>x1>>x2>>y1>>y2;
printf("%.2f",sqrt(pow((x2-x1),2)+pow((y2-y1),2)));
return 0;
}
複製代碼
作者:
郭博鈞
時間:
2023-6-3 14:54
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
int x1,x2,y1,y2;
cin>>x1>>x2>>y1>>y2;
printf("%.2f",sqrt(pow((x1-x2),2)+pow((y1-y2),2)));
system("pause");
return 0;
}
複製代碼
作者:
徐啟祐
時間:
2023-6-3 14:55
本帖最後由 徐啟祐 於 2023-6-3 15:04 編輯
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x1,x2,y1,y2;
cin>>x1>>x2>>y1>>y2;
printf("%.2f",sqrt(pow((x1-x2),2)+pow((y1-y2),2)));
return 0;
}
複製代碼
作者:
吳俊頡
時間:
2023-6-3 19:41
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x1,x2,y1,y2;
cin>>x1>>x2>>y1>>y2;
printf("%.2f",sqrt(pow((x1-x2),2)+pow((y1-y2),2)));
return 0;
}
複製代碼
作者:
宜儒
時間:
2023-6-9 22:48
#include<bits/stdc++.h>
#include<cstdlib>
using namespace std;
int main()
{
int x1,x2,y1,y2;
cin>>x1>>x2>>y1>>y2;
//座標計算
printf("%.2f",sqrt(pow((x1-x2),2)+pow((y1-y2),2)));
return 0;
}
複製代碼
作者:
林雋喆
時間:
2023-10-27 16:42
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x1, y1, x2, y2;
double dis;
cin>>x1>>y1>>x2>>y2;
dis=sqrt(pow(x1-x2, 2)+pow(y1-y2, 2));
printf("%.2f", dis);
return 0;
}
複製代碼
作者:
黃品禎
時間:
2023-11-4 18:27
#include<bits/stdc++.h>
using namespace std;
int main()
{
cin.sync_with_stdio(0);
int x_1,y_1,x_2,y_2;
cin>>x_1>>y_1>>x_2>>y_2;
printf("%.2f",sqrt(pow((x_2-x_1),2)+pow((y_2-y_1),2)));
return 0;
}
複製代碼
作者:
李宗儒
時間:
2024-1-24 18:19
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
int a,b,c,d;
cin>>a>>b>>c>>d;
printf("%.2f",sqrt(pow((c-a),2)+pow((d-b),2)));
}
複製代碼
作者:
陳駿彥
時間:
2024-2-2 16:43
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x1,y1,x2,y2;
cin>>x1>>y1>>x2>>y2;
printf("%.2f",sqrt(pow(x1-x2,2)+pow(y1-y2,2)));
return 0;
}
複製代碼
作者:
黃暐鈞
時間:
2024-2-3 15:15
#include<iostream>
#include<cstdlib>
#include<cmath>
#include<string>
using namespace std;
int main()
{
int x1,y1,x2,y2;
cin>>x1>>y1>>x2>>y2;
printf("%.2f",sqrt(pow(x1-x2,2)+pow(y1-y2,2)));
return 0;
}
複製代碼
作者:
蔡秉勛
時間:
2024-7-23 18:56
2
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2