공부하시는대에 도움이 됐으면 좋겠습니다.
답안코드 확인해주세요!
더보기
import java.util.Scanner;
public class Main {
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
String input = in.nextLine();
String[] arr = input.split("");
for (int i = 0; i < arr.length; i++) {
char temp = input.charAt(i);
if (temp >= 65 && temp <= 90) //대문자를 소문자변환
System.out.print((char) (temp + 32));
else if (temp >= 97 && temp <= 122) //소문자출력
System.out.print(temp);
else if (temp >= 48 && temp <= 57) //숫자출력
System.out.print(temp);
}
}
}
더 많은 자바코드가 보고 싶다면?
댓글