2 条题解
-
-1马康雅 (ts2024stu001) LV 8 @ 2025-1-22 21:29:17
using namespace std; int main() { int n; cin >> n; if (n >10&&n<=99) cout << 1; else cout << 0; return 0; }
-
-12023-4-24 17:22:18@
#include<iostream> using namespace std; int main() { int n; cin >> n; if (n > 10 && n <= 99)cout << 1; else cout << 0; return 0; }
- 1
信息
- ID
- 867
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 1
- 标签
- 递交数
- 84
- 已通过
- 63
- 上传者