Wrong Answer
Code
#include<bits/stdc++.h>
#define ll long long
#define endl '\n'
using namespace std;
int32_t main() {
ios_base :: sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int a, b, c;
cin >> a >> b >> c;
if (a == b && b == c) cout << "Equilateral" << endl;
else if (a == b || b == c || a == c) cout << "Isosceles" << endl;
else cout << "Scalene" << endl;
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1108 Triangle Triangle Triangle!!!
- Contest
- Brain Booster #8
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2025-02-17 14:38:36
- Judged At
- 2025-02-17 14:38:36
- Judged By
- Score
- 4
- Total Time
- 1ms
- Peak Memory
- 532.0 KiB