97 条题解
-
0
好神奇,这样子也能过
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n%2==0&&n/10==1) cout<<"Yes"; else cout<<"No"; }
n/10==1也行,这是不是说明样例没有选好??
-
-1
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; if(n % 2 == 0)//先判断是否为偶数,若是,继续判断是否为两位数。 { if(n / 10 <= 9 and n / 10 >= 1)//判断是否为两位数,因为一个两位数,除以10后的商必在1~9之内,由此可以判断。 { cout << "Yes" << endl; } else { cout << "No" << endl; } } else//若不是偶数,输出No { cout << "No" << endl; } return 0; }
一手交赞一手交货
-
-1
我看好多人都把逻辑运算符
&&
写成了and
,虽然有and
但是一般不用and
所以代码走起
#include <iostream> using namespace std; int main() { int n, num = 0; cin >> n; if (n % 2 == 0 && n >= 10 && n < 100) { num = n / 2 + 1; } else { cout << "NO"; } return 0; }
还是蛮易懂的 最后留下我的AC记录[](https://记录详情 - 核OJ_核桃编程 (hetao101.com))
信息
- ID
- 653
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 6
- 标签
- 递交数
- 12241
- 已通过
- 3816
- 上传者