标签:华为上机题
写出一个程序,接受一个字符串,然后输出该字符串反转后的字符串。
#include <iostream> #include <cstring> using namespace std; int Reserve(char *str) { int len=strlen(str); char *begin,*end; begin=str; end=begin+len-1; if(str!=NULL) { while(begin<end) { char temp; temp=*begin; *begin=*end; *end=temp; begin++; end--; } } return 0; } int main() { char str1[100]; gets(str1); Reserve(str1); puts(str1); }
标签:华为上机题
原文地址:http://blog.csdn.net/persever/article/details/46675597