2 条题解
-
0唐弋博 LV 8 @ 2019-03-26 11:08:46
if((int(input()))%15):
print("NO")
else:
print("YES") -
-12017-10-23 13:02:38@
不用谢我
#include <iostream>
#include <iomanip>
#include <cmath>
using namespace std;
int main()
{
int a;
cin>>a;
if(a%5==0&&a%3==0)
{cout<<"YES"<<endl;
}
else {cout<<"NO"<<endl;
}
getchar();
getchar();
return 0;
}
- 1
信息
- 难度
- 3
- 分类
- (无)
- 标签
- (无)
- 递交数
- 1026
- 已通过
- 296
- 通过率
- 29%
- 上传者