URGENT HELP PLEASE C+++
find the errors in the code below and correct them:




#include ;


using namespace std;




int main()


{


Const int number1, number2, product;


cout > number1, number2;


quotient = float (number1) / number2;


cout << quotient


return 0;


}

Respuesta :

Answer:

#include using namespace std;

cout << quotient;

Explanation:

not #include ; using namespace std;

; doesn't belong

cout << quotient

forgot the ; at the end