1 条题解
-
0
陈梓豪 (陈梓豪1) LV 7 @ 2024-10-25 17:57:56
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a;
cin>>a;
for (int i=1;i<=a;i++)
{
if(a%i==0)
{
cout << i << endl;
}
}
return 0;
}
- 1
信息
- ID
- 2623
- 难度
- 7
- 分类
- (无)
- 标签
- 递交数
- 229
- 已通过
- 50
- 通过率
- 22%
- 上传者