6 条题解

  • 5
    @ 2023-6-12 16:53:54

    #include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n%30){ cout<<"3 "; } if(n%50){ cout<<"5 "; } if(n%7==0){ cout<<"7 "; } if(n%3!=0 and n%5!=0 and n%7!=0){ cout<<"n "; }

    return 0;
    

    }

    [ybt]1047 判断能否被3,5,7整除

    信息

    ID
    605
    时间
    1000ms
    内存
    256MiB
    难度
    6
    标签
    (无)
    递交数
    470
    已通过
    150
    上传者