5 条题解

  • 0
    @ 2025-3-3 11:42:19

    #include <bits/stdc++.h>

    using namespace std;

    int main() { double x, y; cin >> x >> y;

    if (x <= 2 && x >= -2 && y <= 2 && y >= -2){
        cout << "True";
    }else{
        cout << "False";
    }
    
    return 0;
    

    }

    信息

    ID
    46
    时间
    1000ms
    内存
    128MiB
    难度
    4
    标签
    递交数
    658
    已通过
    314
    上传者