#include <cstdio> #include <algorithm> #include <iostream> using namespace std; int main() { string temp; while(getline(cin,temp)) { reverse(temp.begin(),temp.end()); cout<<temp<<endl; } return 0; }将这个c++的代码改为c语言的代码
时间: 2024-03-18 14:39:35 浏览: 71
c++所有头文件
5星 · 资源好评率100%
好的,下面是将上述代码改写为 C 语言的版本:
```c
#include <stdio.h>
#include <string.h>
int main() {
char temp[201];
while (fgets(temp, 201, stdin)) {
int len = strlen(temp);
for (int i = len - 2; i >= 0; i--) {
printf("%c", temp[i]);
}
printf("\n");
}
return 0;
}
```
在这个版本中,我们使用了 C 语言的标准库函数 `fgets` 来读取输入的字符串。这个函数会读取一行字符串,最多读取 200 个字符(其中一个字符用于存储字符串末尾的空字符 `\0`)。
接着,我们使用 `strlen` 函数获取字符串的长度,并使用 `for` 循环将字符串逆序输出。需要注意的是,由于 `fgets` 函数会将换行符也读入字符串中,因此在输出时需要将最后一个字符(即换行符)忽略。
最后,我们使用 `printf` 函数输出字符串和换行符。
这样,我们就将 C++ 代码改写为了 C 代码,实现了将输入的字符串逆置输出的功能。
阅读全文