编写程序:计算3*4*5*6*7*8*9(知识点:while)c语言
时间: 2023-09-05 13:07:53 浏览: 47
c语言-while循环
5星 · 资源好评率100%
以下是C语言代码:
```c
#include <stdio.h>
int main() {
int n = 3;
int i = 4;
while (i <= 9) {
n *= i;
i++;
}
printf("3*4*5*6*7*8*9 = %d\n", n);
return 0;
}
```
输出结果为:3*4*5*6*7*8*9 = 181440
阅读全文