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);
}
}
'2학년 > 객체지향언어(JAVA)' 카테고리의 다른 글
JAVA_Chapter 02 if문을 이용한 가위바위보 (0) | 2019.04.19 |
---|---|
JAVA_Chapter01 입/출력(시험 점수 입/출력과 총점, 평균 계산) (0) | 2018.10.07 |
JAVA_Chapter01 입/출력(자기소개 만들기) (0) | 2018.10.07 |