去大写英文字母.c 295 B

1234567891011121314151617181920212223
  1. #include <stdio.h>
  2. #include <ctype.h>
  3. void a(char *str) {
  4. char *p = str;
  5. while (*p != '\0') {
  6. if (!isupper(*p)) {
  7. printf("%c", *p);
  8. }
  9. p++;
  10. }
  11. }
  12. int main() {
  13. char str[100];
  14. fgets(str, sizeof(str), stdin);
  15. a(str);
  16. return 0;
  17. }