C++程序

重新拾起快要遗忘的C++,呵呵,继续学习,从写程序开始吧。。。

本来想在Baidu博客写的,但那玩意不支持源程序显示。。

NO.1九九乘法表

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

你可能感兴趣的:(C++)