Board logo

標題: 巢狀迴圈 (一) - 九九乘法表1 [打印本頁]

作者: 歐柏罕    時間: 2017-11-4 15:02     標題: 巢狀迴圈 (一) - 九九乘法表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. }
複製代碼

作者: 王駿愷    時間: 2017-11-4 15:03

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

作者: 林峻安    時間: 2017-11-4 15:04

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

作者: 鄭楀諺    時間: 2017-11-4 15:04

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

作者: 康紘嘉    時間: 2017-11-4 15:05

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

作者: 吳秉翰    時間: 2017-11-4 15:14

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





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2