将一个字符串str的内容颠倒过来,并输出。str的长度不超过100个字符。 如:输入“I am a student”,输出“tneduts a ma I”。
输入参数:
inputString:输入的字符串
返回值:
输出转换好的逆序字符串
需要注意的是,该题和单词翻转之间的区别!单词翻转输入“I am a student.”,则输出“student.a am I”。
#include<iostream> #include"stdio.h" #include"string.h" using namespace std; /* 字符串反转 */ void reverseStr(char* str, int i, int j) { for (; i < j; i++, j--) { char tmp; tmp = str[i]; str[i] = str[j]; str[j] = tmp; } return; } /* 句子反转 */ void reverseWords(char* str) { int i = 0; char* subStrStart; char* subStrEnd; char* currentPos; currentPos = str; while (*currentPos != '