c++打印九九乘法表
时间: 2023-11-03 08:58:57
浏览: 139
#include <iostream>
using [namespace](https://geek.csdn.net/educolumn/9320c1e3989216a073d07a53909b6d68?spm=1055.2569.3001.10083) std;
int [main](https://geek.csdn.net/educolumn/9ab8a7e574c68216e31b46f12e213ebb?spm=1055.2569.3001.10083)() {
[for](https://geek.csdn.net/educolumn/78c513cde50c58edec3efdd99a67bf21?spm=1055.2569.3001.10083) (int i = 1; i <= 9; i++) {
[for](https://geek.csdn.net/educolumn/78c513cde50c58edec3efdd99a67bf21?spm=1055.2569.3001.10083) (int j = 1; j <= i; j++) {
int x = i * j;
cout << j << "*" << i << "=" << x << " ";
cout << endl;
[return](https://geek.csdn.net/educolumn/8442147fdbfd73b40c03379a6c1eba3a?spm=1055.2569.3001.10083) 0;
相关问题
c++ 打印九九乘法表
九九乘法表是一个常见的数学题目,它展示了从1到9的整数相乘得到的结果。下面是九九乘法表的完整打印:
1 2 3 4 5 6 7 8 9
-------------------------
2 4 6 8 10 12 14 16 18
3 6 9 12 15 18 21 24 27
4 8 12 16 20 24 28 32 36
5 10 15 20 25 30 35 40 45
6 12 18 24 30 36 42 48 54
7 14 21 28 35 42 49 56 63
8 16 24 32 40 48 56 64 72
9 18 27 36 45 54 63 72 81
在九九乘法表中,每一行代表被乘数,每一列代表乘数,而表格中的每个格子都是两个数的乘积。例如,第2行第3列的格子是2乘3等于6。
这个九九乘法表很有趣,可以帮助我们熟悉乘法运算,并且通过观察表格中的规律,可以发
用c++打印九九乘法表
以下是用C语言打印九九乘法表的代码:
#include <stdio.h>
int main() {
int i, j;
for (i = 1; i <= 9; i++) {
for (j = 1; j <= i; j++) {
printf("%d*%d=%2d ", j, i, i*j);
printf("\n");
return 0;
```