返回列表 發帖

巢狀迴圈 (一) - 九九乘法表1

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    for(int i=1;i<=9;i++) //行數
  7.    {
  8.        for(int j=1;j<=9;j++)  //星星個數    條件:行數(1) 星星個數 (1) => 2  
  9.        {
  10.             cout << i << "*" << j << "=" << i*j <<"\t"; //印出星星
  11.        }     // "\t"  => TAB
  12.        cout << endl;
  13.    }
  14.    
  15.    
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

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

TOP

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

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    for(int i=1;i<=9;i++) //行數
  7.    {
  8.        for(int j=1;j<=9;j++)  //星星個數    條件:行數(1) 星星個數 (1) => 2  
  9.        {
  10.             cout << i << "*" << j << "=" << i*j <<"\t"; //印出星星
  11.        }     // "\t"  => TAB
  12.        cout << endl;
  13.    }
  14.    
  15.    
  16.     system("pause");
  17.     return 0;
  18. }
  19. 複製代碼
複製代碼

TOP

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

TOP

返回列表