Hello, I need some help figuring out which errors are syntax errors in this. Compared to what I started with this has come a long way but there are still some in there that I am having trouble spotting. I do know that they if statements are incorrect, i'm just not sure how to properly fix them.
#include <iostream>
using namespace std;
int main ()
{
int a, b;
bool found;
cout << "Enter two integers:" << endl;
cin >> a >> b;
if (a > a*b && 10 < b);
{
found = 2 * a > b;
}
else
{
found = 2 * a < b;
if found
a = 3;
c = 15;
if b
{
b = 0;
a = 1;
}
}
system ("pause");
return 0;
}