2 条题解

  • 4
    @ 2025-11-30 10:35:04
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int n;
        cin>>n;
        if(n%15==0)
            cout<<"YES";
        else
            cout<<"NO";
        return 0;
    }
    
    • -1
      @ 2025-12-17 20:48:41
      using namespace std;
      int main()
      {
      	srand(time(NULL));
      	cout<<rand();
      	return 0;
      }
      
      
      • 1

      判断一个数能否同时被 3 和 5 整除

      信息

      ID
      6899
      时间
      1000ms
      内存
      128MiB
      难度
      1
      标签
      递交数
      35
      已通过
      23
      上传者