Board logo

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

作者: tonyh    時間: 2015-5-1 20:21     標題: 巢狀迴圈 (一) - 九九乘法表1

本帖最後由 tonyh 於 2015-5-1 20:49 編輯

[attach]1222[/attach]
  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. }
複製代碼

作者: 陳思惟    時間: 2015-5-1 20:38

本帖最後由 陳思惟 於 2015-5-1 20:41 編輯
  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.    
  15.     system("pause");
  16.     return 0;                 
  17. }
複製代碼

作者: 沈子耕    時間: 2015-5-1 20:40

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

作者: 林侑成    時間: 2015-5-1 20:41

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

作者: 曾挺桂    時間: 2015-5-1 20:44

  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 d=1; d<=9; d++)
  9.          {
  10.                  cout<<i<<"*"<<d<<"="<<i*d<<"\t";
  11.          }   
  12.          cout<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;                 
  16. }
複製代碼





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