| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 72664 | sh25_zhuwy | 三角形判断 | C++ | 通过 | 0 MS | 256 KB | 203 | 2025-11-02 13:44:45 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; bool tri=(a+b>c&&b+c>a&&c+a>b); if(tri) { cout<<"yes"; } else { cout<<"no"; } return 0; }