#include <iostream>
using namespace std;

int main()
{
	for(int x=1;x<10;x++)//控制行数
	{
		for(int y=1;y<=x;y++)//控制每行显示
			cout<<y<<"*"<<x<<"="<<y*x<<"\t";
		cout<<endl;
	}
	return 0;
}

相关文章:

  • 2021-12-23
  • 2021-12-07
  • 2021-11-19
  • 2021-12-12
  • 2021-06-24
  • 2021-06-01
  • 2021-11-19
猜你喜欢
  • 2022-02-10
  • 2022-12-23
  • 2021-08-23
  • 2022-02-04
  • 2021-12-06
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案