2 条题解

  • 0
    @ 2022-07-29 15:06:34

    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
    int x;cin>>x;
    for(int i=2;i<=x;i++)
    while(x%i==0)
    cout<<i,x/=i;
    return 0;
    }

  • 0
    @ 2021-04-18 16:22:24

    B FACTORS 题解:
    Code:

    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
        int x;cin>>x;
        for(int i=2;i<=x;i++)while(x%i==0)cout<<i,x/=i;
        return 0;
    }
    
  • 1

信息

ID
1244
难度
5
分类
(无)
标签
递交数
23
已通过
11
通过率
48%
被复制
5
上传者