注意:此页面搜索的是所有试题
[应用题,11.2分] #include
#include
void main()
{
int i, max;
char ch;
char str[]="1234567";
for(i=0,j=strlen(str)-1;i;i++,j-- )
{
ch=str[i];
str[i]=str[j];
str[j]=ch;
}
cout<<><>
}
程序运行结果

参考答案