그 동안 함께 배 웠 던 자바 2-1

/*사용자 가 입력 한 문 자 를 받 아 알파벳 인지 숫자 인지 판단 합 니 다.
 * 또는 다른 문자,판단 후 해당 하 는 판정 결 과 를 출력 합 니 다.
 **/ 
import java.io.*;
public class FirstProgram 
{
	public static void main(String[] args)
	{
		char c = ' ';
		System.out.print("Enter a character please: ");
		try
		{
			c = (char)System.in.read();
		}
		catch (IOException e)
		{
			
		};
		if (c >= 'A' && c <= 'z' || c >= 'a' && c <= 'z')
			System.out.println("You've entered character "+ c);
		else if (c >= '0' && c <= '9')
			System.out.println("You've entered integer "+ c);
		else
			System.out.println("You've entered others "+ c);

	}	
}

좋은 웹페이지 즐겨찾기