返回列表 發帖

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i = 1;i <= 5;i++)
  7.     {
  8.         for(int j = 4;j >= i;j--)
  9.         {
  10.             cout<<" ";
  11.         }
  12.         for(int k = 1;k < i*2;k++)
  13.         {
  14.             if(i%2==0)
  15.             {
  16.                  cout<<";";               
  17.             }
  18.             else
  19.             {
  20.                  cout<<"*";
  21.             }
  22.         }
  23.         cout<<endl;   
  24.     }      
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n = 0,x = 0;
  7.     cout << "請任意輸入一個數: ";
  8.     cin >> x;
  9.     n = x;
  10.     cout << "反向輸入的結果為: ";
  11.     for (n > 0;n += 0;)
  12.     {
  13.         cout << n % 10;
  14.         n = n / 10;
  15.     }
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     cout << "***質數運算機***\n\n";
  8.     int a, b = 2;
  9.     cout << "請任意輸入一整數: ";
  10.     cin >> a;
  11.         for (;b < a;b++)
  12.         {
  13.             if (a % b == 0)
  14.             {
  15.                 cout << a << "不是質數\n\n";
  16.                 goto re;
  17.             }
  18.         }
  19.     cout << a << "是質數\n\n";
  20.     cout << "-----------------------------------\n";
  21.     goto re;
  22. }
複製代碼

TOP

返回列表