728x90
반응형
문자열에서 첫번째 대문자를 찾아서 출력한다.
(출처 : http://www.try-cat.ch/contest/view/exercise/70)
- import java.util.Scanner;
- public class Main {
- public static void main(String[] args) {
- Scanner input = new Scanner(System.in);
- String data = input.nextLine();
- char result = ' ';
- for (int i=0; i=65 && charData <91){
- result = charData;
- System.out.println(result);
- break;
- }
- }
- }
- }
출력 : T
728x90
반응형
'Development > Algorithm' 카테고리의 다른 글
에라토스테네스의 체 (0) | 2016.12.07 |
---|---|
[Programing Challenges]반전한 수 더하기 (0) | 2013.02.12 |
[Hacker Cup]Find the Min (0) | 2013.02.01 |
[Hacker Cup]Balanced Smileys (0) | 2013.01.31 |
[Programming Challenges] The 3n+1 Problem (0) | 2011.09.01 |