Compile Error
foo.cc: In function 'int main()': foo.cc:19:30: error: ordered comparison of pointer with integer zero ('std::ios_base& (*)(std::ios_base&)' and 'int') 19 | if (leftDif > 0 && right > 0) | ~~~~~~^~~
Code
#include <bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin >> t;
while (t--)
{
vector<int> v(3);
for (int i = 0; i < 3; i++)
{
cin >> v[i];
}
sort(v.begin(), v.end());
int leftDif = v[1] - v[0];
int RightDif = v[2] - v[1];
int op = 0;
if (leftDif > 0 && right > 0)
{
op = 2;
}
else if (leftDif > 0 || RightDif > 0)
{
op = 1;
}
cout << op << endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1061 Bring equality
- Contest
- Brain Booster #4
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-14 16:35:05
- Judged At
- 2024-11-11 03:23:57
- Judged By
- Score
- 0
- Total Time
- 0ms
- Peak Memory
- 0 Bytes