这道题十分简单 要想判断在哪个组,可以使用for循环 使用i,每次加3,i < 输入的号数 然后让一个计数的变量记录i加了几次即可。
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
LL n, m;
int main()
{
cin >> m;
for(int i = 0; i < m; i += 3)
{
n ++;
}
cout << n;
return 0;
}
注:代码仅供参考哦~ ------------------END-------------------