返回列表 發帖

[作業] 求最小公倍數 (break敘述)

讓使用者任意輸入兩個正整數,求它們的最小公倍數。
提示:加入break敘述,使符合條件時,跳出迴圈。



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

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     int a,b,tmp;
  6.     cout<<"請輸入兩數"<<endl;
  7.     cin>>a>>b;
  8.     cout<<a<<" "<<b<<"的最小公倍數為: ";
  9.     for(int i=a;i<=a*b;i++){
  10.         if(i%a==0 && i%b==0){
  11.             tmp=i;
  12.             break;
  13.         }
  14.     }
  15.     cout<<tmp<<endl;
  16.     system("pause");
  17.     return 0;

  18. }
複製代碼

TOP

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

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5. int x,y,bigger,tmp;
  6. re:
  7. cout<<"請依序輸入x,y";
  8. cin>>x>>y;
  9. bigger=x>y?x:y;
  10. cout<<x<<","<<y<<"最小公倍數=";
  11. for(int i=bigger;i<=x*y;i++)
  12. {
  13. if(i%x==0&&i%y==0)
  14. {
  15. tmp=i;
  16. break;

  17. }

  18. }
  19. cout<<tmp;
  20. cout<<endl;
  21. goto re;

  22. system("pause");
  23. return 0;

  24. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {

  6.     int a,b,c,d;
  7.     cout<<"輸入第一個數"<<endl;
  8.     cin>>a;
  9.     cout<<"輸入第二個數"<<endl;
  10.     cin>>b;
  11.     c=a<b?a:b;
  12.     for(int i=c;i>=1;i++){
  13.         if(i%a==0 && i%b==0){
  14.             d=i;
  15.             break;}}
  16.     cout<<"兩數的最小公倍數為"<<d<<endl;

  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

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

TOP

返回列表