Board logo

標題: 1131101特輔(昀杰) [打印本頁]

作者: may    時間: 2024-10-27 16:47     標題: 1131101特輔(昀杰)

找零錢程式(一)
因數分解 (二)
因數分解 (三)
因數分解 (四)
因數分解 (五)  
三數求公因數
兩數對調
求最大公因數 (輾轉相除法)
平、閏年判定(c++)
作業:
因數分解 (六) - 求最大公因數 (break敘述)
質數 (一) - 判斷是否為質數
質數 (二) - 1000以內的質數有哪些?
[隨堂測驗] 時間換算機
作者: 陳昀杰    時間: 2024-11-1 19:26

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int g;
  7.     cin>>g;
  8.     for(int a=1;a<=g;a++)
  9.     {
  10.         if (g%a==0)
  11.         {
  12.             cout<<a<<endl;
  13.         }
  14.     }
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 陳昀杰    時間: 2024-11-1 19:33

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int s=0;
  7.     int g;
  8.     cin>>g;
  9.     for(int a=1;a<=g;a++)
  10.     {
  11.         if (g%a==0)
  12.         {
  13.             s=a+s ;

  14.             cout<<a<<endl;
  15.         }
  16.     }

  17.     cout<<s<<endl;
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

作者: 陳昀杰    時間: 2024-11-1 20:02

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     int s;
  6.     int g;
  7.     int p;
  8.     int t=0;
  9.     cin>>s>>g;
  10.     if(s>g)
  11.         p=g;
  12.     else
  13.         p=s;
  14.     for(int i=1;i<p;i++)
  15.     {
  16.         if(g%i==0&&s%i==0)
  17.         {
  18.             cout<<i<<endl;
  19.             t=t+1;
  20.         }
  21.     }
  22.     cout<<t<<endl;
  23. }
複製代碼

作者: 陳昀杰    時間: 2024-11-1 20:05

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     int s;
  6.     int g;
  7.     int p;
  8.     int t=0;
  9.     cin>>s>>g;
  10.     if(s>g)
  11.         p=g;
  12.     else
  13.         p=s;
  14.     for(int i=1;i<p;i++)
  15.     {
  16.         if(g%i==0&&s%i==0)
  17.         {

  18.             t=i;
  19.         }
  20.     }
  21.     cout<<t<<endl;
  22. }
複製代碼

作者: 陳昀杰    時間: 2024-11-1 20:51

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     int s;
  6.     int g;
  7.     int j;
  8.     cin>>s>>g;
  9.     do
  10.     {
  11.         j=g;
  12.         g=s%g;
  13.         s=j;

  14.     }while(s%g!=0);
  15.     cout<<g<<endl;

  16. }
複製代碼

作者: 陳昀杰    時間: 2024-11-1 21:01

  1. using namespace std;

  2. int main()
  3. {
  4.     int s;
  5.     cin>>s;
  6.     if(s%400==0){
  7.         cout<<"潤"<<endl;
  8.     }
  9.     else if(s%100==0){
  10.         cout<<"平"<<endl;
  11.     }
  12.      else if(s%4==0){
  13.         cout<<"潤"<<endl;
  14.     }
  15.     else{
  16.         cout<<"平"<<endl;
  17.     }
  18. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2