level 11
#include "stdio.h"
main()
{char s[40];
int i;
printf("input string:");
for(i=0;(s[i]=getchar())!='\n';i++);
s[i]='\0';
printf("\output string:");
for(i=0;s[i]!='0';i++)
{if(s[i]>='a'&&s[i]<='z')
s[i]=s[i]-32;
else if(s[i]>='A'&&s[i]<='Z')
s[i]=s[i]
+3
2;
printf("%c",s[i]);
}
}
2022年10月26日 11点10分




