home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat99.c */
- /*------------------------------------------------------------------*/
- #include <ctype.h>
- #include <stdio.h>
-
- void main()
- {
- char c = 'A';
- if(isupper(c))
- printf(" %c ¼Oñ@¡╙ñj╝gñº¡^ñσªrÑ└\n",c);
- else
- printf(" %c ñú¼Oñ@¡╙ñj╝gñº¡^ñσªrÑ└\n",c);
- }