Run ID:110346
提交时间:2025-02-17 18:58:03
#include <iostream> using namespace std; int main() { int a, x, y; cin >> a >> x >> y; // 读取三个整数 a, x, y // 判断 a 是否在区间 [x, y] 内 if (a >= x && a <= y) { cout << "yes" << endl; } else { cout << "no" << endl; } return 0; }