C++程序练习代码 九九乘法表

2022-08-29 14:37:38   文档大全网     [ 字体: ] [ 阅读: ]

#文档大全网# 导语】以下是®文档大全网的小编为您整理的《C++程序练习代码 九九乘法表》,欢迎阅读!
乘法表,C++,练习,代码,程序

#include<iostream>

#include<string>

using namespace std;

int main(){

for(int i=1; i<10 ;i++ ){

for (int n=1; n<=i ; n++){

cout<<n<<"x"<<i<<"="<<n*i<<ends;

}

cout<<endl;

}

return 0;

}

本文来源:https://www.wddqxz.cn/8f974322aaea998fcc220e4e.html