返回列表 發帖

2024/05/08 課堂重點(宗儒)

本帖最後由 鄭繼威 於 2024-5-8 19:07 編輯

2024/05/08 課程重點


上次

[抽考]
502 數字相乘
503 區間運算
506 質因數分解
507 猜數字
704 過半數


[C++證照]
705 庫存函數





[作業]
練習[KitaJudge] 101~110實作並通過AC

https://meet.google.com/rcd-crxn-qmz
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

本帖最後由 李宗儒 於 2024-5-11 10:48 編輯
  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     int a[3],b;
  6.     for(int i=0;i<3;i++)
  7.     {
  8.         cin>>a[i];
  9.     }

  10.     for(int j=0;j<3;j++){
  11.         for(int i=0;i<2;i++)
  12.         {
  13.             if(a[i]>a[i+1])
  14.             {
  15.                 b=a[i];
  16.                 a[i]=a[i+1];
  17.                 a[i+1]=b;
  18.             }
  19.         }
  20.     }
  21.     cout<<a[0]<<" "<<a[1]<<" "<<a[2]<<endl;

  22.     if((a[0]+a[1])<=a[2])
  23.     {
  24.         cout<<"NO";
  25.         return 0;
  26.     }
  27.     if(pow(a[0],2)+pow(a[1],2)<pow(a[2],2))
  28.     {
  29.         cout<<"Obtuse";
  30.         return 0;
  31.     }
  32.     if(pow(a[0],2)+pow(a[1],2)==pow(a[2],2))
  33.     {
  34.         cout<<"Right";
  35.         return 0;
  36.     }
  37.     if(pow(a[0],2)+pow(a[1],2)>pow(a[2],2))
  38.     {
  39.         cout<<"Acute";
  40.         return 0;
  41.     }






  42.     return 0;
  43. }
複製代碼

TOP

返回列表