https://www.acmicpc.net/problem/1065
#include <iostream>
using namespace std;
int main() {
cin.tie(NULL);
ios::sync_with_stdio(false);
int n,cnt=0;
cin >> n;
if (n < 100)
cnt = n;
else {
cnt = cnt + 99;
for (int i = 100; i <= n; i++) {
if ((i / 100 - (i % 100) / 10) == ((i % 100 / 10) - i% 10))
cnt++;
}
}
cout << cnt << "\n";
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 2588번 : 곱셈 (0) | 2019.02.20 |
---|---|
[C++] 백준 2490번 : 윷놀이 (0) | 2019.02.20 |
[C++] 백준 1934번 : 최소공배수 (0) | 2019.02.20 |
[C++] 백준 11720번 : 숫자의 합 (0) | 2019.02.20 |
[C] 백준 10182번 : 개 (0) | 2019.02.20 |