提交时间:2024-12-21 11:47:01

运行 ID: 2750

#include<bits/stdc++.h> 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 || c*c+b*b==a*a) { cout<<"True"; } else { cout<<"False"; } return 0; }