250x250
반응형
Notice
Recent Posts
Recent Comments
Link
N
(SWEA c++)6718. 희성이의 원근법 본문
728x90
반응형
#include <cstdio>
using namespace std;
int main(void)
{
int t;
scanf("%d", &t);
for(int tc = 1; tc <= t; tc++)
{
int d, ans = 0;
scanf("%d", &d);
if(d < 100)
ans = 0;
else if(d < 1000)
ans = 1;
else if(d < 10000)
ans = 2;
else if(d < 100000)
ans = 3;
else if(d < 1000000)
ans = 4;
else
ans = 5;
printf("#%d %d\n", tc, ans);
}
return 0;
}
728x90
반응형
'SW Expert Academy' 카테고리의 다른 글
(SWEA c++)6781. 삼삼 트리플 게임 (0) | 2020.11.19 |
---|---|
(SWEA c++)6730. 장애물 경주 난이도 (0) | 2020.11.19 |
(SWEA c++)6692. 다솔이의 월급 상자 (0) | 2020.11.19 |
(SWEA c++)6485. 삼성시의 버스 노선 (0) | 2020.11.19 |
(SWEA c++)6190. 정곤이의 단조 증가하는 수 (0) | 2020.11.18 |