본문 바로가기
C++

[프로그래머스] 아이스 아메리카노

by 띰쥬 2025. 9. 4.
728x90
반응형
SMALL

#include <string>
#include <vector>

using namespace std;

vector<int> solution(int money) {
    vector<int> answer;
    
    answer.push_back(money/5500);
    answer.push_back(money%5500);
    return answer;
}

728x90
반응형
LIST

댓글