c语言输入多组字符串
时间: 2023-12-09 16:06:49 浏览: 134
C语言多输入
以下是两种C语言输入多组字符串的例子:
1.使用循环输入多组字符串
```c
#include <stdio.h>
int main() {
char str[20];
int i;
for (i = 0; i < 5; i++) {
scanf("%s", str);
printf("%s\n", str);
}
return 0;
}
```
2.使用while循环输入多组字符串,直到输入"exit"结束
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[20];
while (strcmp(str, "exit") != 0) {
scanf("%s", str);
printf("%s\n", str);
}
return 0;
}
```
阅读全文