Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
147339 杰苏尔纳迪尔 判断平方数 C++ 解答错误 25 0 MS 248 KB 256 2024-05-18 14:42:51

Tests(1/4):


#include<iostream> #include<cmath> using namespace std; int main(){ double a,b,c,d; cin>>a>>b; c=sqrt(a); d=sqrt(b); c=fmod(a,c); d=fmod(b,d); if(c==0) cout<<1<<endl; else cout<<0<<endl; if(d==0) cout<<1; else cout<<0; }


测评信息: