+ 1
why my codes always unqualified?please someone help me
#include <iostream> using namespace std; int main() { int x = (5 + 2) *2; cout << x; return 0; } #include<iostream> using namespace std; { int x=19*19+19; cout<<x; return 0; }
4 Réponses
+ 10
The top half looks alright.
What are you trying to do with the bottom half?
+ 1
best answer .Becouse you are unqualified
+ 1
try removing the other #include <iostream> using namespace std;
+ 1
#include<iostream>
using namespace std;
{
int x=19*19+19;
cout<<x;
return 0;
}
in this one you are missing int main ()