返回列表 發帖

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

本帖最後由 許婷芳 於 2019-8-30 19:43 編輯

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    for(int a=1;a<=9;a++)
    {
        for(int b=1;b<=9;b++)
        {
                cout<<a<<"*"<<b<<"="<<a*b<<"\t";
                }
        }
    system("pause");
    return 0;   
}

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int a=1;a<=9;a++)
  7.     {
  8.     for(int b=1;b<=9;b++)
  9.     {
  10.      cout<<a<<"*"<<b<<"="<<a*b<<"\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.    
  7.     for(int a=1; a<=9; a++)
  8.     {
  9.        for(int b=1; b<=9; b++)
  10.        {
  11.         cout<<a<<"*"<<b<<"="<<a*b<<"\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 a=1; a<=9; a++)
  7.    {
  8.     for(int b=1; b<=9; b++)
  9.     {
  10.       cout<<a<<"*"<<b<<"="<<a*b<<"\*";      
  11.     }
  12.    }
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

TOP

返回列表