728x90
대소문자 바꿔서 출력하기
문제 설명
영어 알파벳으로 이루어진 문자열 str이 주어집니다. 각 알파벳을 대문자는 소문자로 소문자는 대문자로 변환해서 출력하는 코드를 작성해 보세요.
제한사항
- 1 ≤ str의 길이 ≤ 10
- str은 알파벳으로 이루어진 문자열입니다.
입출력 예
입력 #1
aBcDeFg
출력 #1
AbCdEfG
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String a = sc.next();
String result = "";
for(int i = 0; i < a.length(); i++)
{
char c = a.charAt(i);
if(Character.isLowerCase(c))
result += Character.toUpperCase(c);
else
result += Character.toLowerCase(c);
}
System.out.println(result);
}
}
next()
charAt()
isLowerCase()
toUpperCase()
728x90
'자바학점을 자바줘 (JAVA)' 카테고리의 다른 글
[코딩테스트] 최빈값 구하기 (0) | 2023.04.30 |
---|---|
[자바] 람다식, 패키지 (0) | 2022.04.24 |
[자바] 인터페이스 (0) | 2022.04.24 |
[자바] 상속 (0) | 2022.04.21 |
[자바] 클래스와 메소드 심화 개념 (1) | 2022.04.21 |