题目链接:
https://cn.vjudge.net/problem/SGU-105
题目大意:
定义一个数列
1,12,123,1234,12345......12345678910,1234567891011
求第1-n项中能整除3的项的项数
解题思路:
水题,找规律就行
#include<bits/stdc++.h>
using namespace std; int main()
{
int n, ans;
cin >> n;
ans = n / * ;
if(n % == )ans++;
cout<<ans<<endl;
return ;
}