文章
145
粉丝
218
获赞
304
访问
115.3k
#include <stdio.h> #include <string.h> int main() { char s[1000],*p; gets(s); p = s; while(*p != '\0') { if(*p >= 'A' && *p <= 'Z') *p = *p + 32; p++; } puts(s); return 0; }
登录后发布评论
暂无评论,来抢沙发