文章
145
粉丝
217
获赞
21
访问
82.8k
#include <stdio.h> #include <string.h> int main() { char s[100]; while(scanf("%s",s) != EOF) { char *p = s; while(*p) { if(*p >= 'A' && *p <= 'Z') { printf("_%c",*p+32); } else printf("%c",*p); p++; } printf("\n"); } return 0; }
登录后发布评论
暂无评论,来抢沙发