返回列表 發帖

2023/12/30 課堂重點

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

今日重點:
複習while 迴圈 (二)
while 迴圈 (四) - 九九乘法表
因數分解 (一)

作業:
[訂正] while 迴圈 (三)
完成 因數分解 (一) 一次
完成 面積計算 (四) - 梯形 一次
打字練習網 完成英文字母 A列第一關到第三關

今日考試:
while 迴圈 (三)

下次考試:
因數分解 (二) - 共有幾個因數

  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int a,i=1;
  7.     cout<<"請輸入一正整數:";
  8.     cin>> a;
  9.     cout<<a<<"的因數:";
  10.     while(i<=a)
  11.     {
  12.     if(a%i==0)
  13.     {
  14.     cout<<i<<' ';
  15.     }
  16.     i++;
  17.     }
  18.     cout<<endl;
  19.     system ("pause");
  20.     return 0;
  21. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float a,s,d;
  7.     cout<<"請輸入梯形的上底: ";
  8.     cin>>a;
  9.     cout<<"請輸入梯形的下底: ";
  10.     cin>>s;
  11.     cout<<"請輸入梯形的高: ";
  12.     cin>>d;
  13.     cout<<"上底 "<<a<<",下底 "<<s<<,高"<<d<<"c的梯形,面積是"<<(a+s)*d/2<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     float x, y, z;
  8.     cout << "請輸入梯形的上底(公分): ";
  9.     cin >> x;
  10.     cout << "請輸入梯形的下底(公分): ";
  11.     cin >> y;
  12.     cout << "請輸入梯形的高(公分): ";
  13.     cin >> z;
  14.     cout << "上底" << x << "公分,下底" << y << "公分,高" << z << "公分的梯形,面積為" << (x+y)*z/2 << "平方公分" << "\n\n";
  15.     goto re;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int g;
  7.     cout<<"請輸入一正整數: ";
  8.     cin>>g;
  9.     cout<<g<<"的因數有: ";
  10.     for(int i=1; i<=g; i++)
  11.     {
  12.          if(g%i==0)
  13.              cout<<i<<" ";
  14.     }
  15.     cout<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼
༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float g,gg,ggg;
  7.     cout<<"請輸入梯形的上底(公分):" ;
  8.     cin>>g;
  9.     cout<<"請輸入梯形的下底(公分):" ;
  10.     cin>>gg;
  11.     cout<<"請輸入梯形的高(公分):" ;
  12.     cin>>ggg;
  13.     cout<<"上底"<<g<<"公分,下底"<<gg<<"高"<<ggg<<"公分的梯形,面積為"<<(g+gg)*ggg/2<<"平方公分."<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼
༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    float x, y, z;
    cout<<"輸入梯形的上底(公分): ";
    cin>>x;
    cout<<"輸入梯形的下底(公分): ";
    cin>>y;
    cout<<"輸入梯形的高(公分): ";
    cin>>z;
    cout<<"上底"<<x<<"公分,下底"<<y<<"公分,高"<<z<<"公分的梯形,面積為"<<(x+y)*z/2<<"平方公分."<<endl;
    system("pause");
    return 0;
}

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int x;
    cout<<"請輸入一正整數: ";
    cin>>x;
    cout<<x<<"的因數有: ";
    for(int i=1; i<=x; i++)
    {
        if(x%i == 0)
        cout<<i<<' ';
    }
    system("pause");
    return 0;
}

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"請輸入一正整數: ";
  8.     cin>>x;
  9.     cout<<x<<"的因數有: ";
  10.     for(int i=1; i<=x; i++)
  11.     {
  12.         if(x%i == 0)
  13.         cout<<i<<' ';
  14.     }
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

本帖最後由 張凱焱 於 2024-1-1 17:46 編輯
  1. #include<iostream>
  2. #include<iostream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     re:
  8.     float a, b, c;
  9.     cout<<"請輸入梯形的上底(公分): ";
  10.     cin>>a;
  11.     cout<<"請輸入梯形的下底(公分): ";
  12.     cin>>b;
  13.     cout<<"請輸入梯形的高(公分): ";
  14.     cin>>c;
  15.     cout<<"上底"<<a<<"公分,下底"<<b<<"公分,高"<<c<<"公分的梯形,面積為"<<(a+b)*c/2<<"平方公分"<<endl;
  16.     goto re;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"請輸入一正整數: ";
  8.     cin>>x;
  9.     cout<<x<<"的因數有: ";
  10.     for(int i=1; i<=x; i++)
  11.     {
  12.         if(x%i == 0)
  13.         cout<<i<<' ';
  14.     }
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float x,y,z;
  7.     cout<<"請輸入梯形的上底(公分):" ;
  8.     cin>>x;
  9.     cout<<"請輸入梯形的下底(公分):" ;
  10.     cin>>y;
  11.     cout<<"請輸入梯形的高(公分):" ;
  12.     cin>>z;
  13.     cout<<"上底"<<x<<"公分,下底"<<y<<"高"<<z<<"公分的梯形,面積為"<<(x+y)*z/2<<"平方公分."<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

返回列表