Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
136274 芦睿霖 07判断正负数 C++ Wrong Answer 1 MS 272 KB 234 2025-11-10 16:56:08

Tests(0/10):


Code:

#include <iostream> using namespace std; int main(){ int n; cin >> n; if(n%3==0) { if(n%5==0) { cout<<"can"; } else{ cout<<"cannot"; } } else{ cout<<"cannot"; } return 0; }


Run Info:

------Input------
6468
------Answer-----
YES
------Your output-----
cannot