返回列表 發帖

因數分解 (六) - 求最大公因數 (break敘述)

利用break敘述,於符合條件時,立即跳出迴圈。



本帖隱藏的內容需要回復才可以瀏覽

本帖最後由 李宇澤 於 2019-11-8 20:52 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int m,n,smaller,gcd;
  8.     cout<<"輸入第一正整數: ";
  9.     cin>>m;
  10.     cout<<"輸入第二正整數: ";
  11.     cin>>n;
  12.     smaller=m<n?m:n;
  13.     for(int i=smaller; i>=1; i--)
  14.     {
  15.         if(m%i==0 && n%i==0)
  16.         {
  17.             gcd=i;
  18.             break;   
  19.         }
  20.     }
  21.     cout<<m<<" 與 "<<n<<"的最大公因數為: "<<gcd<<endl;
  22.     goto re;
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼
李宇澤Oscar

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a,b,smaller,d;
  8.     cout<<"輸入第一正整數: ";
  9.     cin>>a;
  10.     cout<<"輸入第二正整數: ";
  11.     cin>>b;
  12.     smaller=a<b?a:b;
  13.     for(int i=smaller; i>=1; i--)
  14.     {
  15.         if(a%i==0 && b%i==0)
  16.         {
  17.             d=i;
  18.             break;
  19.         }
  20.     }
  21.     cout<<a<<" 與 "<<b<<"的最大公因數為: "<<d<<endl;
  22.     system("pause");
  23.     goto re;
  24.     return 0;
  25. }
複製代碼

TOP

本帖最後由 蔡忻霓 於 2019-11-8 20:53 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a,b,smaller,gcd;
  8.     cout<<"輸入第一正整數: ";
  9.     cin>>a;
  10.     cout<<"輸入第二正整數: ";
  11.     cin>>b;
  12.     smaller=a<b?a:b;
  13.     for(int i=smaller; i>=1; i--)
  14.     {
  15.         if(a%i==0 && b%i==0)
  16.         {
  17.             gcd=i;
  18.             break;   
  19.         }
  20.     }
  21.     cout<<a<<" 與 "<<b<<"的最大公因數為: "<<gcd<<endl;
  22.     system("pause");
  23.     goto re;
  24.     return 0;
  25. }
複製代碼

TOP

本帖最後由 董宸佑 於 2019-11-8 20:56 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int m, n, s, gcd;
  7.     cout<<"請輸入第一個正整數: ";
  8.     cin>>m;
  9.     cout<<"請輸入第二個正整數: ";
  10.     cin>>n;
  11.     s=m<n?m:n;
  12.     cout<<m<<"與"<<n<<"的最大公因數是: ";
  13.     for(int i=s; i>=1; i--)
  14.     {
  15.         if(m%i==0 && n%i==0)
  16.         {
  17.             gcd=i;
  18.             break;         
  19.         }      
  20.     }
  21.     cout<<gcd<<endl<<endl;
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

TOP

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

TOP

本帖最後由 黃辰昊 於 2019-11-8 20:55 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b, smaller, gcd;
  7.     re:
  8.     cout<<"請輸入第一個數: ";
  9.     cin>>a;
  10.     cout<<"請輸入第二個數: ";
  11.     cin>>b;
  12.     cout<<"最大公因數= ";
  13.     smaller=a<b?a:b;
  14.     for(int i=smaller; i>=1; i--)
  15.     {
  16.         if(a%i==0 && b%i==0)
  17.         {
  18.             gcd=i;
  19.             break;
  20.         }
  21.     }   
  22.     cout<<gcd<<endl;
  23.     goto re;
  24.     system("pause");
  25.     return 0;   
  26. }
複製代碼
Huang chenhao

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int m,n,smaller,gcd;
  8.     cout<<"輸入第一正整數: ";
  9.     cin>>m;
  10.     cout<<"輸入第二正整數: ";
  11.     cin>>n;
  12.     smaller=m<n?m:n;
  13.     for(int i=smaller; i>=1; i--)
  14.     {
  15.         if(m%i==0 && n%i==0)
  16.         {
  17.             gcd=i;
  18.             break;   
  19.         }
  20.     }
  21.     cout<<m<<" 與 "<<n<<"的最大公因數為: "<<gcd<<endl;
  22.     goto re;
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int g, h, f, z;
  7.     cout<<"請輸入第一個正整數: ";
  8.     cin>>g;
  9.     cout<<"請輸入第二個正整數: ";
  10.     cin>>h;
  11.     f=g<h?g:h;
  12.     for(int i=f; i>=0; i--)
  13.     {
  14.         if(g%i==0 && h%i==0)
  15.         {
  16.             z=i;
  17.             break;
  18.         }
  19.     }
  20.     cout<<g<<"和"<<h<<"的最大公因數: "<<endl;
  21.     cout<<z<<endl<<endl;
  22.     system("pause");
  23.     return 0;
  24. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int g, h, f, z;
  7.     cout<<"請輸入第一個正整數: ";
  8.     cin>>g;
  9.     cout<<"請輸入第二個正整數: ";
  10.     cin>>h;
  11.     f=g<h?g:h;
  12.     for(int i; i<=0; i--)
  13.     {
  14.         if(g%i==0 && h%i==0)
  15.         {
  16.             z=i;
  17.             break;
  18.         }
  19.     }
  20.     cout<<g<<"和"<<h<<"的最大公因數: "<<endl;
  21.     cout<<z<<endl<<endl;
  22.     system("pause");
  23.     return 0;
  24. }
複製代碼

TOP

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

TOP

返回列表