#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a; if(a % 3 == 0) { cout<<3<<" "; } if(a % 5 == 0) { cout<<5<<" "; } if(a % 7 == 0) { cout<<7; } return 0; }
哦,thank you very much
4、不能被任何数整除,输出小写字符‘n’,不包括单引号。
共 2 条回复
哦,thank you very much
4、不能被任何数整除,输出小写字符‘n’,不包括单引号。