2학년/객체지향언어(JAVA)

JAVA_Chapter 02 문자열의 첫 자리와 특정 자리 출력

김야키 2019. 4. 19. 13:38

 

import java.util.Scanner;
public class lab2_1 {
	public static void main(String[] args)
	{
		Scanner sc = new Scanner(System.in);
		
		char ch;
		

		System.out.println("==============================");
		System.out.println("       학번 : 201403010");
		System.out.println("          이름 : 김지하");
		System.out.println("==============================");
		
		System.out.println();
		System.out.print("문자를 입력하세요 : ");
		String str = sc.next();
		
		System.out.print("몇 번째 배열의 문자를 출력하시겠습니까? : ");
		int a = sc.nextInt();
		
		
		ch=str.charAt(a-1);//str의 배열a번에 들어있는 문자를 담는다
		
		
		if(str.charAt(0)>='A' && str.charAt(0)<='z')//str의 첫번째 문자가 A~z라면
			System.out.println(str.charAt(0));//str의 첫번째 문자를 출력한다.
		
		else
			System.out.println("You missed!");
		
		
		System.out.println(ch);
	}
}

실행 화면