Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 구현
- hash table
- 코딩테스트
- Method
- Matrix
- Data Structure
- implement
- Binary Search
- Math
- Number Theory
- Binary Tree
- Counting
- 파이썬
- 코테
- greedy
- Tree
- string
- geometry
- 자바
- two pointers
- sorting
- Class
- dynamic programming
- java
- database
- array
- SQL
- Stack
- simulation
- bit manipulation
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 대소문자 바꿔서 출력하기 본문
1. Input, Output, Example
2. Constraint
1) 1 ≤ str의 길이 ≤ 10
2) str은 알파벳으로 이루어진 문자열이다.
3. Code
1) 첫 코드(2023/04/24)
import java.util.*;
import java.io.*;
public class Solution {
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
char[] c = br.readLine().toCharArray();
for(int i=0 ; i<c.length ; i++){
if(c[i]>='a') bw.write((char)(c[i]-32));
else bw.write((char)(c[i]+32));
}
bw.flush(); bw.close();
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 소문자로 바꾸기 (0) | 2023.04.24 |
---|---|
[프로그래머스/Lv.0] 특수문자 출력하기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 문자열 반복해서 출력하기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] a와 b 출력하기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 문자열 출력하기 (0) | 2023.04.24 |