提交时间:2026-05-21 18:39:57

运行 ID: 88921

#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; }