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

TOP

返回列表