3 条题解
- 1
信息
- ID
- 707
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 1
- 标签
- 递交数
- 95
- 已通过
- 75
- 上传者
#include<bits/stdc++.h>
using namespace std;
int main()
{
int c;
cin >> c;
if (c < 100)
{
cout << "1";
}
else if (c < 100)
{
cout << "2";
}
else if(c < 1000)
{
cout << "3";
}
else
{
cout <<"4";
}
return 0;
}//A