怎么判断有无小数,萌新求助```
#include
using namespace std;
int main(){
int n; cin >> n; if(n/15==0){ cout <<"YES"; } else{ cout <<"NO"; } return 0;
}