3 条题解

  • 5
    @ 2022-12-18 12:21:07
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int n;
        cin >> n;
        if (n % 30 == 0)
        {
            cout << n / 30;
        }
        else
        {
            cout << n / 30 + 1;
        }
        return 0;
    }
    
    • 3
      @ 2023-4-5 16:58:33

      两种情况,这道题只有一个样例(懂的都懂)

      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
          int n;
          cin>>n;
          if (n%30==0)
              cout<<n/30;
          else
              cout<<n/30+1;
          return 0;
      }
      • 2
        @ 2023-10-12 23:44:03

        俺用枚举写分支

        #include<bits/stdc++.h>
        using namespace std;
        int main()
        {
            int n;
            cin>>n;
            for(int i=1;i<=n;i++)
            {
                if(i*30>=n)
                {
                    cout<<i;
                    break;
                }
            }
            return 0;
        }
        
        • 1

        信息

        ID
        629
        时间
        1000ms
        内存
        64MiB
        难度
        4
        标签
        递交数
        322
        已通过
        156
        上传者