我不得不承认,我不知道如何使用指针,但我尝试了很多。我的程序的问题是它反向显示字符串,除了第一个字母丢失并且整个字符串向前移动一个空格,第一个元素为空白。例如,它在输入“hello”时显示“olle”。
#include <iostream>
#include <string>
using namespace std;
string reverse(string word);
int main()
{
char Cstring[50];
cout<<"enter a word: ";
cin>>Cstring;
string results = reverse(Cstring);
cout <<results;
}
string reverse(string word)
{
char *front;
char *rear;
for (int i=0;i< (word.length()/2);i++)
{
front[0]=word[i];
rear[0]=word[word.length()-i];
word[i]=*rear;
word[word.length()-i]=*front;
}
return word;
}
新代码完美运行。将字符串更改为 cstrings。技术上要求cstrings的问题,但我发现字符串更容易,所以我使用字符串然后进行必要的更改以使其成为c字符串。想出 ho 来初始化后部和前部。
#include <iostream>
#include <cstring>
using namespace std;
string reverse(char word[20]);
int main()
{
char Cstring[20];
cout<<"enter a word: ";
cin>>Cstring;
string results = reverse(Cstring);
cout <<results;
}
string reverse(char word[20])
{
char a='a';
char b='b';
char *front=&a;
char *rear=&b;
for (int i=0;i< (strlen(word)/2);i++)
{
front[0]=word[i];
rear[0]=word[strlen(word)-1-i];
word[i]=*rear;
word[strlen(word)-1-i]=*front;
}
return word;
}