返回列表 發帖

  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. }   
複製代碼
༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼
༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ

TOP

#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");

TOP

#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;   
}

TOP

  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. }   
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

返回列表