0
What's the problem of my code
3 Antworten
+ 2
Missing ; at the end of line 19.
Line 21 should be like this.
cout << endl << "q=" << q << "p=" << p <<" q*p= " << q*p;
+ 2
Few unused variables are declared other are already said by Avinesh
Fixed :
https://code.sololearn.com/cCE0aH3lQ3oZ/?ref=app
0
Thanks for your help