返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a=1;
  7.     while(a<=9)
  8.     {
  9.         int b=1;
  10.         while(b<=9)
  11.         {
  12.             cout<<a<<"*"<<a<<"="<<a*j<<"\t";
  13.             b++;
  14.         }
  15.         a++;
  16.         cout<<endl;
  17.     }  
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼
http://fs-old.mis.kuas.edu.tw/~s1102137106/music/

TOP

返回列表