mojo's Blog
문자열의 n 번째 문자 가져오기 본문
String s = scanner.next(); <= 문자열을 입력하여
char c = s.charAt(0); <= 문자열의 첫번째 문자를 가져온다.
import java.util.*;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scanner=new Scanner(System.in);
System.out.print("소문자 알파벳 하나를 입력하시오>>");
char c=scanner.next().charAt(0);
char tmp='a';
String s="";
while(true) {
if(c==tmp) {
s+=tmp;
break;
}
else {
s+=tmp;
tmp+=1;
}
}
int cnt=s.charAt(s.length()-1)-s.charAt(0);
for(int i=cnt;i>=0;i--) {
for(int j=0;j<=i;j++) {
System.out.print(s.charAt(j));
}
System.out.println();
}
scanner.close();
}
}
'Java' 카테고리의 다른 글
클래스, 멤버 접근 지정 및 static과 non-static, final 메소드 (0) | 2021.07.17 |
---|---|
this reference (0) | 2021.07.17 |
임의의 수 생성하기 (0) | 2021.07.17 |
예외 처리, try-catch-finally 문 (0) | 2021.07.17 |
for-each 문 활용하기 (0) | 2021.07.17 |
Comments