九九乘法表

#include <iostream>
using namespace std;
int main(int argc, char** argv) {
	for(int i=1;i<=9;i++){
		for(int j=1;j<=i;j++){
			cout<<j<<"*"<<i<<"="<<j*i<<" ";
		}
		cout<<endl;
	}
	
	
	
	
	return 0;
}

  

posted @ 2022-11-25 18:43  fushuxuan1  阅读(14)  评论(0)    收藏  举报