4 条题解

  • 2
    @ 2022-8-11 19:34:31

    #include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(aa+bb==c*c){ cout<<"yes"; }else{ cout<<"no"; } return 0; }


    • @ 2022-12-3 20:19:12

      这和下面发的题解有什么区别???

  • 1
    @ 2022-8-15 19:45:53
    using namespace std;
    int main()
    {
      int a,b,c;
      cin>>a>>b>>c;
      if(a*a+b*b==c*c || a*a+c*c==b*b || b*b+c*c==a*a){
      	cout<<"yes"<<endl;
      }else{
      	cout<<"no"<<endl;
      }
      return 0;
    }
    
    • 1
      @ 2022-5-28 16:14:16
      using namespace std;
      int main()
      {
        int a,b,c;
        cin>>a>>b>>c;
        if(a*a+b*b==c*c or a*a+c*c==b*b or b*b+c*c==a*a){
        	cout<<"yes"<<endl;
        }else{
        	cout<<"no"<<endl;
        }
        return 0;
      }
      
      • 0
        @ 2022-8-11 19:33:20

        #include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(aa+bb==c*c){ cout<<"yes"; }else{ cout<<"no"; } return 0; }

      • 1

      信息

      ID
      28
      时间
      1000ms
      内存
      256MiB
      难度
      3
      标签
      递交数
      107
      已通过
      60
      上传者