2 条题解

  • 2
    @ 2023-10-6 0:31:28

    我来

    #include <bits/stdc++.h> 
    using namespace std;
    int n;
    int main()
    {
        cin >> n;
        for(int i=1;i<=n;i++)
        {
            if(n%i==0)
            {
                cout << i << " ";
            } 
        }
        return 0;
    }
    
    • 1
      @ 2022-7-8 22:25:04
      #include <bits/stdc++.h> 
      using namespace std;
      int main()
      {
          int n;
          cin >> n;
          for(int i =1;i<=n;i++)
          {
              if(n%i==0)
                  cout << i << " ";
          }
          return 0;
      }
      
      • 1

      信息

      ID
      1129
      时间
      1000ms
      内存
      128MiB
      难度
      1
      标签
      递交数
      55
      已通过
      50
      上传者