#include <stdio.h> #include <ctype.h> // Contains the tolower prototype void main (void) { int letter; for (letter = getchar(); ! feof(stdin); letter = getchar()) putchar(tolower(letter)); }
#include <stdio.h> #include <string.h> void main (void) { char line[255]; // Line of text read while (fgets(line, sizeof(line), stdin)) fputs(strupr(line), stdout); }
本文出自 “阿凡达” 博客,请务必保留此出处http://shamrock.blog.51cto.com/2079212/878528