2020-12-01

学习目标:

C++学习记录 :简单算法篇

学习内容:

1,结合书籍 C++初学者 以及网络相关视频学习

学习产出:

关于C++版的九九乘法表

//九九乘法表的练习使用
#include
using namespace std;
int main()
{
       int i=1;
   int j=1;
   for(j=1;j<10;j++)
   {
     
   for(i=1;i<=j;i++)
   {
     
   cout<<i<<"*"<<j<<"="<<i*j<<" ";
   }
   cout<<endl;
   }
	return 0;
}

你可能感兴趣的:(c++,算法)