-
Java - 간단한 대소문자 구분개발노하우/Java 2007. 4. 18. 13:01
import java.io.*;
public class int_in{
public static void main(String[] arg)throws IOException
{
char str;
str = (char)System.in.read();
if(str >='A' && str <='Z')
{
System.out.println(str+"는 대문자 입니다.");
}
else if(str >='a' && str <='z')
{
System.out.println(str+"는 소문자 입니다.");
}
}
}