728x90
public class Ex16 { //알파벳 대문자를 소문자로 바꾸기
public static void main(String[] args){
/*char lowerCase = 'z';
char upperCase = (char) (lowerCase - 32);
System.out.println(upperCase);*/
/*
Scanner sc = new Scanner(System.in);
System.out.print("소문자로 바꿀 알파벳 대문자를 입력하시오");
String a = sc.nextLine();
for(int i = 0; i<a.length(); i++){
char b = (char) (a.charAt(i)+32);
System.out.print(b);
*/
Scanner sc = new Scanner(System.in);
System.out.print("소문자로 바꿀 알파벳 대문자를 입력하시오");
String a = sc.nextLine();
char b = (char) (a.charAt(0)+32);
System.out.println("b="+ b);
}
}
728x90
'JAVA > 예제' 카테고리의 다른 글
[JAVA] ch03-18. 소숫점 자르기 (0) | 2017.08.21 |
---|---|
[JAVA] ch03-17. 소수 자리수 출력하기 (0) | 2017.08.21 |
[JAVA] ch03-15. 알파벳 증가 연산자 (0) | 2017.08.21 |
[JAVA] ch03-14. 유니코드 증가 (0) | 2017.08.21 |
[JAVA] ch03-13. 유니코드 활용 (0) | 2017.08.21 |
댓글