Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- stl
- Deque
- map
- Visual Micro
- 수광 소자
- priority_queue
- 컴퓨터 그래픽스
- 통계학
- list
- 라인트레이서
- 자료구조
- set
- Algorithm
- queue
- Stack
- Arduino
- Array
- 아두이노
- arduino compiler
- 운영체제
- directx
- vector
- 시스템프로그래밍
- WinAPI
- 아두이노 컴파일러
- html
- c++
- C언어
- 아두이노 소스
- LineTracer
Archives
- Today
- Total
Kim's Programming
1926. 간단한 369게임 본문
1926. 간단한 369게임
풀이 방법
<코드>
#include <iostream> int check369(int number) { int retval{ 0 }; int value = number; while (value != 0) { int test = value % 10; if (test == 3 || test == 6 || test == 9) retval++; value /= 10; } return retval; } int main(int argc, char** argv) { std::ios::sync_with_stdio(false); std::cout.tie(nullptr); std::cin.tie(nullptr); int nValue{}; std::cin >> nValue; for (int i = 1; i <= nValue; i++) { int count{}; if ((count = check369(i)) > 0) for (int j = 0; j < count; j++) std::cout << "-"; else std::cout << i; std::cout << " "; } std::cout << "\n"; return 0; }
'SW ExpertAcademy > D2' 카테고리의 다른 글
1859. 백만 장자 프로젝트 (0) | 2018.12.01 |
---|---|
2007. 패턴 마디의 길이 (0) | 2018.12.01 |
2005. 파스칼의 삼각형 (0) | 2018.12.01 |
2001. 파리 퇴치 (0) | 2018.12.01 |
1989. 초심자의 회문 검사 (0) | 2018.12.01 |