题解:我好似发现了一种全新的做法 审核通过

caisen 2024-10-19 15:32:22 8

这道题十分简单 要想判断在哪个组,可以使用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-------------------

{{ vote && vote.total.up }}