3 条题解
-
312317姚玉杨 (12317姚玉杨) LV 7 @ 2021-11-04 12:19:24
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
int n;
cin>>n;
if(n%2==0)
cout<<"yes"<<endl;
else
cout<<"no"<<endl;
return 0;
} -
02021-11-28 09:25:49@
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
int n;
cin>>n;
if(n%2==0)
cout<<"yes";
else
cout<<"no";
return 0;
} -
02021-05-04 20:59:48@
#include<iostream> template<class T> bool bj(T n){if(n%2==0) return true;return false;} int main(){ int n; std::cin>>n; if(bj(n)){std::cout<<"yes";return 0;} std::cout<<"no"; return 0; }
- 1
信息
- ID
- 1705
- 难度
- 3
- 分类
- (无)
- 标签
- 递交数
- 441
- 已通过
- 229
- 通过率
- 52%
- 被复制
- 2
- 上传者