UPPER.txt

#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);
}
 




posted @ 2012-06-04 12:29  XE2011  阅读(108)  评论(0编辑  收藏  举报