본문 바로가기

Algorithm/String

(C++) - 백준(BOJ) 15000 : CAPS

반응형

https://www.acmicpc.net/problem/15000

 

15000번: CAPS

Earth is under attack! Messages need to be sent to the Earth Defense Force (EDF) that makes clear that the situation is dire. The EDF’s strongest forces consist of mechs (huge bipedal robots) that are piloted by Japanese teenagers. To make sure that the

www.acmicpc.net

문자열 속성을 이해해 푼 문제였습니다.

📕 풀이방법

📔 입력 및 초기화

문자열 s를 선언 후 입력받습니다.

📔 풀이과정

각 문자에 대해 loop를 수행하며 대문자로 바꿔줍니다.

📔 정답출력

s를 출력합니다.


📕 Code

#include <bits/stdc++.h>
using namespace std;

string s;

int main(){
  cin >> s;
  for(auto &c : s) c = c - 'a' + 'A';
  cout << s;
}

*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.