Home > Software engineering >  Thread 'Win32 threads (0 x910) have withdrawn, the return value is 0 (0 x0).
Thread 'Win32 threads (0 x910) have withdrawn, the return value is 0 (0 x0).

Time:09-27

#include
Void main ()
{
Int x, y, n.
Printf (" please enter the number two ");
The scanf (" % d % d ", & amp; X, & amp; Y);
N=x + y;
If (n % 5==0)
{
Printf (" you lose ");
}
The else
{
Printf (" % d ", n);
}
Getchar ();
System (" pasue ");
}

CodePudding user response:

In the system function is contained in the header file stdlib. H
In addition is the pause, you spell wrong

CodePudding user response:

#include //for the system (" pause ");

CodePudding user response:

Is said your thread exits, and return the value 0, the thread exit normally
  • Related