| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 734 | 张志鹏 | 判断三角形形状 | C++ | Compile Error | 0 | 0 MS | 0 KB | 228 | 2019-09-21 19:13:58 |
using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if (a==b&&b==c) cout<<"1"<<endl; else if (a==b||a==c||b==c) cout<<"2"<<endl; else cout<<"3"<<endl; return 0; }