풀이과정
n이 짝수이면 n / 2만큼 "수박"을 문자열에 더해주면 되고,
만약 홀수이면 n / 2만큼 더해준 문자열에 "수"만 더하면 된다.
#include <string>
#include <vector>
using namespace std;
string solution(int n) {
string answer = "";
int cnt = n / 2;
while(cnt--) answer += "수박";
if(n % 2 == 1) answer += "수";
return answer;
}
'🍞 Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스][Level1] 약수의 합 c++ (0) | 2022.09.02 |
---|---|
[프로그래머스][Level1] 약수의 개수와 덧셈 c++ (0) | 2022.09.02 |
[프로그래머스][Level1] 소수 찾기 c++ (0) | 2022.09.02 |
[프로그래머스][Level1] 서울에서 김서방 찾기 c++ (0) | 2022.09.02 |
[프로그래머스][Level1] 최소 직사각형 c++ (0) | 2022.09.02 |