P1006题解
#include <iostream>
using namespace std;
int main( )
{
char str[100]; //变量定义:字符类型,也可以用string str;
cin>>str; //字符串输入
int i=0; //引入i,用于求str的长度,若是使用string,可用size()函数直接得到
while(str[i]!='\0') i++;
for(int j=i-1;j>=0;j--)
cout<<str[j]; //进行反序输出,使用string不好反序
return 0;
}
登录后发布评论
暂无评论,来抢沙发