Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
88921 bnu_fanmeijie 判断是否为两位数 C++ 通过 1 MS 248 KB 237 2026-05-21 18:39:57

Tests(1/1):


#include <iostream> using namespace std; int main() { int n; cin >> n; if (n >= 10 && n <= 99) { //两位数范围:10 ~ 99 cout << 1 << endl; } else { cout << 0 << endl; } return 0; }


测评信息: