1234567891011121314151617181920212223 |
- #include <stdio.h>
- #include <ctype.h>
- void a(char *str) {
- char *p = str;
- while (*p != '\0') {
- if (!isupper(*p)) {
- printf("%c", *p);
- }
- p++;
- }
- }
- int main() {
- char str[100];
- fgets(str, sizeof(str), stdin);
- a(str);
- return 0;
- }
|