标签:int com 调用 class pre abc temp size 个数
abcd
dcba
参考代码:
#include<stdio.h>
#include<string.h>
int change(char a[]){
int cnt = strlen(a); //计算字符串字符数
for(int i = 0;i<cnt/2;i++){ //依次交换两个数,共交换cnt/2次
char temp;
temp = a[i];
a[i] = a[cnt-1-i];
a[cnt-1-i] = temp;
}
for(int i=0;i<cnt;i++){ //遍历输出
printf("%c",a[i]);
}
return 0;
}
int main(){
char a[100]={0};
gets(a);
change(a);
return 0;
}
标签:int com 调用 class pre abc temp size 个数
原文地址:http://www.cnblogs.com/zhhjthing/p/7768982.html