题解
2023-08-22 18:21:08
发布于:广东
9阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
long n;
cin >> n;
if (n%3==0)
cout << 3 << ' ';
if (n%5==0)
cout << 5 << ' ';
if (n%7==0)
cout << 7 << ' ';
if (n%3>0 && n%5>0 && n%7>0)
cout << 'n';
return 0;
}
这里空空如也
有帮助,赞一个