반응형
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 | 31 |
Tags
- 기술면접
- 이분탐색
- 퇴사통보
- @P0
- 연결요소
- 백트래킹
- 경력
- Kafka
- dfs
- 6987
- 처우협의
- 백준
- Docker
- msSQL
- 오퍼레터
- 매개변수탐색
- OFFSET
- 13908
- softeer
- upper_bound
- 파라메트릭
- 처우산정
- 성적평가
- incr
- 소프티어
- compose
- BOJ
- 물채우기
- boj #19237 #어른 상어
- BFS
Archives
- Today
- Total
기술 블로그
2744번 대소문자 바꾸기 본문
728x90
반응형
https://www.acmicpc.net/problem/2744
그냥 올리고 싶어서 올려본다.
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 31 32 33 34 35 36 37 38 39 40 41 42 43 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> #include <set> #include <sstream> #include <tuple> #pragma warning(disable:4996) #pragma comment(linker, "/STACK:336777216") using namespace std; int main(void) { string s; cin >> s; for (int i = 0; i < s.length(); i++) { if ('a' <= s.at(i) && s.at(i) <= 'z') // 97 ~ { s.at(i) -= 'a' - 'A'; } else if ('A' <= s.at(i) && s.at(i) <= 'Z') // 65 ~ { s.at(i) += 'a' - 'A'; } cout << s.at(i); } printf("\n"); return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
17143번 낚시왕 (0) | 2019.04.16 |
---|---|
17141번 연구소 2 (0) | 2019.04.15 |
16938번 캠프 준비 (0) | 2019.04.14 |
16937번 두 스티커 (0) | 2019.04.14 |
16939번 2×2×2 큐브 (0) | 2019.04.12 |