单循环编写九九乘法表

2022-10-09 04:31:14   文档大全网     [ 字体: ] [ 阅读: ]

#文档大全网# 导语】以下是®文档大全网的小编为您整理的《单循环编写九九乘法表》,欢迎阅读!
乘法表,单循环,编写,九九

#include <iostream>

using namespace std;

int main()

{

for (int i = 1,j = 1; j <= 9; i++)

{

cout<<i<<"*"<<j<<"="<<i*j<<"\t";

if(i==j)

{

i=0;

j++;

cout<<endl;

}

}

return 0;

}

本文来源:https://www.wddqxz.cn/88bac07101f69e31433294b8.html