这道题,有点·········

nnn 2021-05-11 20:23:06 2021-05-12 17:51:57 7
#include <iostream>

using namespace std; int main() { int n; cin >> n; if (!(n % 5 == 0) && (n % 3 == 0 && n <= 20) || (n % 5 == 0) && !(n % 3 == 0 && n <= 20)) cout << "YES"; else cout << "NO"; return 0; }

{{ vote && vote.total.up }}

共 1 条回复

Super_Cube Legendary

有点