74.9k views
2 votes
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;


}

User Gawel
by
4.5k points

1 Answer

5 votes

Answer:

#include using namespace std;

cout << quotient;

Step-by-step explanation:

not #include ; using namespace std;

; doesn't belong

cout << quotient

forgot the ; at the end

User Dulaj Kulathunga
by
5.5k points