c语言九九乘法表倒三角
时间: 2023-12-02 12:40:58 浏览: 767
以下是C语言实现九九乘法表倒三角的代码:
```c
#include <stdio.h>
int main()
{
int i, j;
for (i = 9; i >= 1; i--) // i*j=n,确定乘法表的格式
{
for (j = 1; j <= i; j++) // 先让i一样,再往后改变j
{
printf("%d*%d=%2d ", i, j, i * j); // 输出乘法表
}
printf("\n");
}
return 0;
}
```
相关问题
c语言打印九九乘法表倒三角
在C语言中,打印九九乘法表的倒三角通常通过嵌套循环来实现。下面是一个简单的示例代码:
```c
#include <stdio.h>
void print_triangle(int n) {
for (int i = 1; i <= n; ++i) {
// 打印前i行
for (int j = 1; j <= i; ++j) {
printf("%d*", j);
}
printf("\n"); // 每行结束换行
// 如果不是第一行,打印星号连接的斜杠
if (i != 1) {
for (int k = i - 1; k >= 1; --k) {
printf("*");
}
printf("\n");
}
}
}
int main() {
int size = 9; // 或者你想打印的九九乘法表的最大值
print_triangle(size);
return 0;
}
```
这个程序会输出从1到指定数字(在这个例子中是9)的乘法表,然后逐行添加斜杠(*)形成倒三角形状。
c语言99乘法表正倒三角
以下是C语言中打印九九乘法表正倒三角的代码示例:
正三角靠右:
```c
#include <stdio.h>
int main() {
int a, n, b;
printf("正三角靠右:\n\n");
for (a = 1; a < 10; a++) {
for (n = 9; n > a; n--) {
printf(" ");
}
for (b = 1; b <= a; b++) {
printf("%d*%d=%2d\t", a, b, a * b);
}
printf("\n");
}
return 0;
}
```
倒三角靠右:
```c
#include <stdio.h>
int main() {
int a, n, b;
printf("倒三角靠右:\n\n");
for (a = 1; a < 10; a++) {
for (n = 1; n < a; n++) {
printf(" ");
}
for (b = 9; b >= a; b--) {
printf("%d*%d=%2d\t", a, b, a * b);
}
printf("\n");
}
return 0;
}
```
以上代码可以在C语言中打印出九九乘法表的正倒三角形式。
#### 引用[.reference_title]
- *1* [c语言:九九乘法表 | 正三角形 | 倒三角形](https://blog.csdn.net/xinanbo/article/details/113175807)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* *3* [C语言中的输出99乘法表4种方法](https://blog.csdn.net/qq_43178535/article/details/126963299)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文