返回列表 發帖

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   //設定初始值 條件 條件變化方式
  6.     for(int x=9;x>=1;x--)  {
  7.         for(int y=9;y>=1;y--)
  8.            cout<<x<<"*"<<y<<"="<<x*y<<"\t";
  9.            
  10.         cout<<endl;}
  11.       
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

TOP

返回列表