c语言打印hello world十次
时间: 2023-11-11 19:07:34 浏览: 158
一个C语言的helloworld程序
在C语言中,可以使用循环语句来打印hello world十次。以下是三种不同的循环语句实现:
1. 使用while循环:
```
#include<stdio.h>
int main(void) {
int i=10;
while(i>=0) {
printf("hello world");
i--;
}
return 0;
}
```
2. 使用for循环:
```
#include<stdio.h>
int main(void) {
int i;
int n = 10;
for(i=1;i<=n;i++) {
printf("hello world");
}
return 0;
}
```
3. 使用do-while循环:
```
#include<stdio.h>
int main(void) {
int i=10;
do {
printf("hello world");
i--;
} while(i>=0);
return 0;
}
```
阅读全文