Board logo

標題: 2024/01/06 課堂重點 [打印本頁]

作者: 陳育霖    時間: 2024-1-6 12:28     標題: 2024/01/06 課堂重點

本帖最後由 陳育霖 於 2024-1-6 20:53 編輯

今日重點:
複習因數分解 (一)
因數分解 (三) - 所有因數的總和
因數分解 (四) - 求公因數

作業:
[訂正] 因數分解 (二) - 共有幾個因數
打字練習網 完成英文字母 A列第四關到第六關
if...else if...else 票價分類 完成一次
因數分解 (四) - 求公因數 完成一次

今日考試:
打字測驗(二)
因數分解 (二) - 共有幾個因數

下次考試:
因數分解 (五) - 求最大公因數

作者: 黃子瑞    時間: 2024-1-6 16:37

  1. #include<iostream>
  2. #include<cstdilb>
  3. using namespace std;
  4. int main()
  5. {
  6.     int age
  7.     re:
  8.     cout<<"請輸入你的年齡:";
  9.     cin>>age;
  10.     if(age>=0&&age<=3)
  11.     {
  12.         cout<<"購買幼兒票(免費入場)"<<endl;
  13.     }
  14.     else if(age>=4&&age<=12)
  15.     {
  16.          cout<<"購買兒童票(50元)"<<endl;
  17.     }
  18.     else if(age>=13&&age<=64)
  19.     {
  20.          cout<<"購買一般票(100元)"<<endl;
  21.     }
  22.     else if(age>=&&age<=65)
  23.     {
  24.          cout<<"購買敬老票(70元)"<<endl;
  25.     }
  26.     else
  27.         cout<<"別鬧了"<<endl;
  28.     goto re:
  29.     system("pause");
  30.     return 0;   
  31. }   
複製代碼

作者: 張淙鈞    時間: 2024-1-6 20:55

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.    
  7.     int a,b, sum=0;
  8.     cout<<"請輸入第一個數: ";
  9.     cin>>a;
  10.     cout<<"請輸入第二個數: ";
  11.     cin>>b;
  12.     cout<<a<<"與"<<b<<"的公因數有:";
  13.     for(int i=1; i<=a; i++)
  14.     {
  15.         if(a%i==0 && b%i==0)
  16.         {   
  17.              cout<<i<<' ';
  18.              sum++;
  19.         }
  20.     }
  21.     cout<<endl<<"共有"<<sum<<"個!"<<endl;
  22.    
  23.     system("pause");
  24.     return 0;   
  25. }
複製代碼

作者: 張凱焱    時間: 2024-1-6 20:57

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b, sum=0;
  7.     cout<<"請輸入第一個數: ";
  8.     cin>>a;
  9.     cout<<"請輸入第二個數: ";
  10.     cin>>b;
  11.     cout<<a<<"和"<<b<<"的公因數有: ";
  12.     for(int i=1; i<=a; i++)
  13.     {
  14.             if(a%i==0&&b%i==0)
  15.             {
  16.                       cout<<i<<" ";
  17.                       sum++;         
  18.             }        
  19.     }
  20.     cout<<endl<<"共有"<<sum<<"個!"<<endl;
  21.     system("pause");
  22.     return 0;
  23. }
複製代碼

作者: 陳宥澄    時間: 2024-1-6 21:00

  1.     #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x,y,n;
  7.     cout << "請輸入第一個數: ";
  8.     cin >> x;
  9.     cout << "請輸入第二個數: ";
  10.     cin >> y;
  11.     cout << x << "與" << y << "的最公因數是: ";
  12.     int i=1;
  13.     while(i<=x)
  14.     {
  15.         if(x%i==0 && y%i==0)
  16.         {
  17.             n=i;
  18.         }
  19.         i++;      
  20.     }
  21.     cout << n << endl;
  22.     system("pause");
  23.     return 0;
  24. }
複製代碼

作者: 張凱焱    時間: 2024-1-7 09:12

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int age;
  7.     re:
  8.     cout<<"請輸入你的年齡: ";
  9.     cin>>age;
  10.     if(age>=0&&age<=3)
  11.     {
  12.         cout<<"幼兒票(免費入場)"<<endl;                        
  13.     }
  14.     else if(age>=4&&age<=12)
  15.     {
  16.         cout<<"兒童票(50元)"<<endl;                        
  17.     }
  18.     else if(age>=13&&age<=64)
  19.     {
  20.         cout<<"一般票(100元)"<<endl;                        
  21.     }
  22.     else if(age>=65&&age<=200)
  23.     {
  24.         cout<<"敬老票(70元)"<<endl;                        
  25.     }
  26.    
  27.     else
  28.     {
  29.         cout<<"別鬧了"<<endl;
  30.     }
  31.     goto re;
  32.     system("pause");   
  33.     return 0;
  34. }
複製代碼

作者: 鄭以樂    時間: 2024-1-7 13:42

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int age;
  7.    re:
  8.    cout<<"請數入你的年齡: ";
  9.    cin>>age;
  10.    if(age>=0&&age<=3)
  11.    {
  12.       cout<<"購買幼兒票(免費入場)"<<endl;
  13.    }
  14.    else if(age>=4&&age<=12)
  15.    {
  16.       cout<<"購買兒童票(50元)"<<endl;
  17.    }
  18.    else if(age>=13&&age<=64)
  19.    {
  20.       cout<<"購買一般票(100元)"<<endl;   
  21.    }
  22.    else if(age>=65&&age<=100)
  23.    {
  24.        cout<<"購買敬老票(70元)"<<endl;
  25.    }
  26.    else
  27.    {
  28.        cout<<"別鬧了"<<endl;
  29.    }
  30.    goto re;
  31.     system("pause");
  32.     return 0;
  33. }
複製代碼

作者: 鄭以樂    時間: 2024-1-7 13:43

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b,sum=0;
  7.     cout<<"請輸入第一個數: ";
  8.     cin>>a;
  9.     cout<<"請輸入第二個數: ";
  10.     cin>>b;
  11.     cout<<a<<"與"<<b<<"的公因數有: ";
  12.     for(int i=1;i<=a;i++)
  13.     {
  14.             if(a%i==0&&b%i==0)
  15.             {
  16.               cout<<i<<" ";
  17.               sum++;
  18.             }
  19.     }
  20.     cout<<endl;
  21.     cout<<"共有" <<sum<<"個!"<<endl;
  22.     system("pause");
  23.     return 0;
  24. }
複製代碼

作者: 黃子瑞    時間: 2024-1-10 22:11

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.     re:
  7.     int x, y, smaller, sum=0;
  8.     cout<<"請輸入第一個數: ";
  9.     cin>>x;
  10.     cout<<"請輸入第二個數: ";
  11.     cin>>y;
  12.     smaller=x<y?x:y;
  13.     cout<<x<<"與"<<y<<"的公因數有: ";
  14.     for(int i=1; i<=smaller; i++)
  15.     {
  16.         if(x%i==0 && y%i==0)
  17.         {
  18.             cout<<i<<" ";
  19.             sum++;
  20.         }
  21.     }
  22.     cout<<endl<<"共有"<<sum<<"個!"<<endl<<endl;
  23.     goto re;
  24.     return 0;   
  25. }
複製代碼

作者: 李冠霖    時間: 2024-1-12 23:34

#include<iostream>
#include<cstdilb>
using namespace std;
int main()
{
    int age
    re:
    cout<<"請輸入你的年齡:";
    cin>>age;
    if(age>=0&&age<=3)
    {
        cout<<"購買幼兒票(免費入場)"<<endl;
    }
    else if(age>=4&&age<=12)
    {
         cout<<"購買兒童票(50元)"<<endl;
    }
    else if(age>=13&&age<=64)
    {
         cout<<"購買一般票(100元)"<<endl;
    }
    else if(age>=&&age<=65)
    {
         cout<<"購買敬老票(70元)"<<endl;
    }
    else
        cout<<"別鬧了"<<endl;
    goto re:
    system("pause");
作者: 李冠霖    時間: 2024-1-12 23:35

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{  
    re:
    int x, y, smaller, sum=0;
    cout<<"請輸入第一個數: ";
    cin>>x;
    cout<<"請輸入第二個數: ";
    cin>>y;
    smaller=x<y?x:y;
    cout<<x<<"與"<<y<<"的公因數有: ";
    for(int i=1; i<=smaller; i++)
    {
        if(x%i==0 && y%i==0)
        {
            cout<<i<<" ";
            sum++;
        }
    }
    cout<<endl<<"共有"<<sum<<"個!"<<endl<<endl;
    goto re;
    return 0;   
}
作者: 詠綺    時間: 2024-1-13 17:41

  1. #include<iostream>
  2. #include<cstdilb>
  3. using namespace std;
  4. int main()
  5. {
  6.     int age
  7.     re:
  8.     cout<<"請輸入你的年齡:";
  9.     cin>>age;
  10.     if(age>=0&&age<=3)
  11.     {
  12.         cout<<"購買幼兒票(免費入場)"<<endl;
  13.     }
  14.     else if(age>=4&&age<=12)
  15.     {
  16.          cout<<"購買兒童票(50元)"<<endl;
  17.     }
  18.     else if(age>=13&&age<=64)
  19.     {
  20.          cout<<"購買一般票(100元)"<<endl;
  21.     }
  22.     else if(age>=&&age<=65)
  23.     {
  24.          cout<<"購買敬老票(70元)"<<endl;
  25.     }
  26.     else
  27.         cout<<"別鬧了"<<endl;
  28.     goto re:
  29.     system("pause");
  30.     return 0;   
  31. }   
複製代碼

作者: 詠綺    時間: 2024-1-13 17:42

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b,c=0;
  7.    cout<<"請輸入第一個數:";
  8.    cin>>b;
  9.    cout<<"請輸入第一個數:";
  10.    cin >>a;
  11.    cout<<b<<"與"<<a<<"的公因數為:";
  12.    for(int s=1;s<=a;s++)
  13.    {
  14.    if(a%s==0&&b%s==0)
  15.    {
  16.    c++;
  17.    cout<<s<<' ';                  
  18.    }        
  19.    }
  20.    cout<<"\n共有"<<c<<"個!\n";
  21.     system("pause");
  22.     return 0;
  23. }
複製代碼

作者: 陳宥澄    時間: 2024-1-13 19:15

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.     re:
  7.     int s;
  8.     cout<<"請輸入你的年齡: ";
  9.     cin>>s;
  10.     if(s>=200 || s<0)
  11.     {
  12.         cout<<"別鬧了"<<endl;
  13.     }
  14.     else if(s>=65)
  15.     {
  16.         cout<<"購買敬老票(70元)"<<endl;
  17.     }
  18.     else if(s>=13)
  19.     {
  20.         cout<<"購買一般票(100元)"<<endl;
  21.     }
  22.     else if(s>=4)
  23.     {
  24.         cout<<"購買兒童票(50元)"<<endl;
  25.     }
  26.     else
  27.     {
  28.         cout<<"幼兒票(免費入場)"<<endl;
  29.     }
  30.     goto re;
  31.     system ("pause");
  32.     return 0;
  33. }
複製代碼





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