赞
踩
#include <stdio.h>
int main () {
int i;
char a[81];
gets (a);
for (i=0;a[i]!='\0';i++) {
if (a[i]>='A'&&a[i]<='Z') {
a[i]=a[i]+('Z'+'A'-2*a[i]);
}
}
puts (a);
return 0;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。