返回列表 發帖

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int compute(int o[6])
  4. {
  5.     int l=0;

  6.     for(int i=0;i<=5;i++){
  7.         if(o[i]%3==0){
  8.         l=l+1;
  9.         }

  10.     }



  11.     return l;
  12. }


  13. int main()
  14. {
  15.     int str[6];
  16.     for(int e=0;e<=5;e++){
  17.         cin>>str[e];
  18.     }


  19.     cout<<compute(str);

  20.     return 0;
  21. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int compute(int o[3])
  4. {

  5.    if(o[1]==1){
  6.     return o[0]+o[2];
  7.    }else if(o[1]==2){
  8.     return o[0]*o[2];
  9.    }

  10. }

  11. int main()
  12. {
  13.     int str[3];
  14.     for(int i=0;i<=2;i++){
  15.         cin>>str[i];
  16.     }

  17.     cout<<compute(str);

  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int f(int n)
  4. {

  5.    if(n==0){
  6.     return 1;
  7.    }else {
  8.     return n*f(n-1);
  9.    }

  10. }

  11. int main()
  12. {
  13.     int str;
  14.     cin>>str;
  15.     cout<<"n!="<<f(str);

  16.     return 0;
  17. }
複製代碼

TOP

本帖最後由 劉冠毅 於 2025-2-8 14:55 編輯
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int compute(int o[5])
  4. {

  5.     int a,b,c,d;

  6.     a=max(o[0],o[1]);
  7.     b=max(a,o[2]);
  8.     c=max(b,o[3]);
  9.     d=max(c,o[4]);


  10.     return d;
  11. }


  12. int main()
  13. {
  14.     int u[5];
  15.     for(int i=0;i<=4;i++){
  16.         cin>>u[i];
  17.     }

  18.     cout<<compute(u);

  19.     return 0;
  20. }
複製代碼

TOP

本帖最後由 劉冠毅 於 2025-2-8 14:50 編輯
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int f(int u)
  4. {


  5.     if(u==0)
  6.         return  0;
  7.     else if(u==1)
  8.     return 1;
  9.     return f(u-1)+f(u-2);
  10. }


  11. int main()
  12. {
  13.     int i;
  14.     cin>>i;
  15.     for(int u=i;u>=0;u--){
  16.         cout<<f(u)<<endl;
  17.     }


  18.     return 0;
  19. }
複製代碼

TOP

本帖最後由 劉冠毅 於 2025-2-8 14:11 編輯
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. float compute(float u[6])
  4. {
  5.     float a,b,c;
  6.     a=u[0]/u[3];
  7.     b=u[1]/u[4];
  8.     c=u[2]/u[5];



  9.     if(a<b and a<c){

  10.         return a ;
  11.     }else if(b<a and b<c){

  12.         return b;
  13.     }else if(c<a and c<b){

  14.         return c ;
  15.     }
  16. }


  17. int main()
  18. {
  19.    float i[6];
  20.    for(int t=0;t<=5;t++){
  21.        cin>>i[t];
  22.    }

  23.     printf("%.3f",compute(i));




  24.     return 0;
  25. }
複製代碼

TOP

返回列表