본문 바로가기
알고리즘풀이/정올-자바

[정올/JAVA] 598 : 문자열1 - 자가진단6 문자를 입력받아 알파벳 문자인 경우에는 그대로 출력하고 숫자인 경우는 아스키코드값을 출력하는 작업을 반복하다가 기타의 문자가 입력되면 종료하는 ..

by 이얏호이야호 2020. 8. 31.

공부하시는대에 도움이 됐으면 좋겠습니다.

답안코드 확인해주세요!

 

더보기
import java.util.Scanner;



public class Main {



 public static void main(String args[]) {

 Scanner in = new Scanner(System.in);

 while (true) {

 char input = in.next().charAt(0);

 if (input >= 65 && input <= 90)        //대문자

 System.out.println(input);

 else if (input >= 97 && input <= 122)    //소문자

 System.out.println(input);

 else if (input >= 48 && input <= 57)    //숫자

 System.out.println((int) input);

 else

 break;

 }



 }

}

 

 

 

 

 


더 많은 자바코드가 보고 싶다면?

https://chuinggun.tistory.com/category/%EC%95%8C%EA%B3%A0%EB%A6%AC%EC%A6%98%ED%92%80%EC%9D%B4/%EC%A0%95%EC%98%AC-%EC%9E%90%EB%B0%94

댓글