1 条题解

  • 0
    @ 2025-4-5 18:36:40
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	double a,b;
    	cin>>a>>b;
    	if(a>=(-1)&&b>=(-1)&&a<=(1)&&b<=(1)){
    		printf("yes");
    	}else{
    		printf("no");
    	}
    	return 0;
    }
    

    注意浮点数

    • 1

    信息

    ID
    140
    时间
    1000ms
    内存
    128MiB
    难度
    7
    标签
    递交数
    14
    已通过
    12
    上传者