不懂//判断直角三角形只有80分

Kinghero King of the summit 2022-07-05 21:51:47 0
#include <iostream>
using namespace std;
int main() {
    int a, b, c;
    cin >> a >> b >> c;
    if (a * a + b * b == c * c) {
        cout << "yes";
    } else {
        cout << "no";
    }
    return 0;
}
{{ vote && vote.total.up }}

共 1 条回复

CPP 刷题王

因为这个数据可能会打乱 例如:输入

3 5 4