標題:
2024/05/08 課堂重點(宗儒)
[打印本頁]
作者:
鄭繼威
時間:
2024-5-8 18:02
標題:
2024/05/08 課堂重點(宗儒)
本帖最後由 鄭繼威 於 2024-5-8 19:07 編輯
2024/05/08 課程重點
上次
[抽考]
502 數字相乘
503 區間運算
506 質因數分解
507 猜數字
704 過半數
[C++證照]
705 庫存函數
[作業]
練習
[KitaJudge]
101~110
實作並
通過AC
[attach]18389[/attach]
https://meet.google.com/rcd-crxn-qmz
作者:
李宗儒
時間:
2024-5-8 19:11
本帖最後由 李宗儒 於 2024-5-11 10:48 編輯
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a[3],b;
for(int i=0;i<3;i++)
{
cin>>a[i];
}
for(int j=0;j<3;j++){
for(int i=0;i<2;i++)
{
if(a[i]>a[i+1])
{
b=a[i];
a[i]=a[i+1];
a[i+1]=b;
}
}
}
cout<<a[0]<<" "<<a[1]<<" "<<a[2]<<endl;
if((a[0]+a[1])<=a[2])
{
cout<<"NO";
return 0;
}
if(pow(a[0],2)+pow(a[1],2)<pow(a[2],2))
{
cout<<"Obtuse";
return 0;
}
if(pow(a[0],2)+pow(a[1],2)==pow(a[2],2))
{
cout<<"Right";
return 0;
}
if(pow(a[0],2)+pow(a[1],2)>pow(a[2],2))
{
cout<<"Acute";
return 0;
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2