class TestSwitch03 
{
	public static void main(String[] args) 
	{
		//
		//ʹ��switch-caseʵ�֣���ѧ���ɼ�����60�ֵģ�������ϸ񡱡�����60�ֵģ���������ϸ񡱡�
		//����if 
		//����ֵ case 1 - 60  >  68 6  ����60 �� 1 �Ƚ�

		int s = 101;
		//��Χ
		if( s >= 0 && s <=100 ){
			switch (s/60){
				case 1:
					System.out.println("�ϸ�");
				break;
				default:
					System.out.println("���ϸ�");
				break;
			}
		}else{
			System.out.println("�����Ƿ�");
		}

	
		
	}
}