返回列表 發帖

while 迴圈 (四)

利用while製作九九乘法表

本帖最後由 莊旻叡 於 2017-5-20 10:08 編輯
  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a=1,b=0;
  7.     while(a<=9)
  8.     {
  9.                b=1;
  10.      while(b<=9)
  11.      {
  12.       cout<<a<<"*"<<b<<"="<<a*b<<endl;
  13.       b++;               
  14.      }
  15.      a++;               
  16.     }
  17.     system("pause");
  18.     return 0;   
  19. }
複製代碼

TOP

int i=1;
    while(i<=9)
    {
      int j=1;
      while(j<=9)
      {
        cout << i << "*" << j << "=" << i*j << endl;
        j++;
      }  
      i++;        
    }

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int a=1,b=0;
  7.    while(a<=9)
  8.    { b=1;
  9.      while(b<=9)
  10.     {
  11.      cout<<a<<"*"<<b<<"="<<a*b<<endl;
  12.     b++;
  13.     }
  14.     a++;              
  15.    }
  16.     system("pause");
  17.      return 0;
  18. }
複製代碼

TOP

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

TOP

返回列表