Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118350 | 李茗宇 | 08判断区间 | C++ | Accepted | 1 MS | 272 KB | 236 | 2025-04-27 20:43:20 |
#include <iostream> int main() { int a, x, y; std::cin >> a >> x >> y; if (a >= x && a <= y) { std::cout << "yes" << std::endl; } else { std::cout << "no" << std::endl; } return 0; }