13th Oct 2017, 3:45 PM
No Timr‎
2 Réponses
+ 4
The error code tells you that scanf and printf aren't defined. You'll need to #include <cstdio> to use those functions, or use cin and cout which are part of iostream that you're currently importing. You've also missing a semi colon after the final printf.
13th Oct 2017, 3:52 PM
Nic
0
try to find it
13th Oct 2017, 3:46 PM
No Timr‎