0
Something is wrong with our playground...
"an error has occurred. Please check your Internet connection" is the error I'm getting with my cool little code I made. it all checks out on Visual Basic. SAME EXACT CODE. Had to condense it: #include <iostream > using namespace std; using int32 = int; int main() { int32 y = 8; int32 x = 80; int32 z = x / y; z++; cout << "So lets begin! " << x << " divided by " << y << " plus 1, equals to " << z << " !" << endl ; cout << "GREAT JOB!"; return 0; }
4 Réponses
+ 2
Sometimes it works. It said GREAT JOB! I agree with that.
+ 1
This morning the performance is better.
0
Thanks guys!
So it's not me (phew). It totally checks out in Visual Basic, and I didn't know if using int32 was causing the crash or not. I wanna get good enough for a competition soon :D