반응형
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int solution(int number) {
int count = 0;
for (int i = 1; i <= number; i++) {
int current = i;
while (current != 0) {
if (current%10!=0 && (current%10)%3==0)
count++;
current /= 10;
}
}
return count;
}
// 아래는 테스트케이스 출력을 해보기 위한 main 함수입니다.
int main() {
int number = 40;
int ret = solution(number);
// Press Run button to receive output.
cout << "solution 함수의 반환 값은 " << ret << " 입니다." << endl;
}
반응형
'자격증 > COS Pro' 카테고리의 다른 글
COSPro 2급 C++] 1차 문제8) 팰린드롬 판단하기 - C++ (0) | 2022.07.12 |
---|---|
COSPro 2급 C++] 1차 문제7) 영어 수강 대상자 수 구하기 - C++ (0) | 2022.07.12 |
COSPro 2급 C++] 1차 문제5) 배열의 순서 뒤집기 - C++ (0) | 2022.07.12 |
COSPro 2급 C++] 1차 문제4) 등장하는 가장 많은 수와 적은수 구하기 - C++ (0) | 2022.07.12 |
COSPro 2급 C++] 1차 문제3 시작 날짜와 끝 날짜의 사이 날짜구하기 - C++ (0) | 2022.07.12 |