Home > database >  Any error for the novice for guidance.
Any error for the novice for guidance.

Time:10-12

#include
//the main function
Int main ()
{
Int Max (int x, int y);
int a, b, c;
The scanf (" % d, % d ", & amp; A, & amp; b);
C=Max (a, b);
Printf (" Max=% d \ n ", c);
return 0;
}
//for the two integers supplied by the Max function
Int Max (int x, int y)
{
Int z;
If (x & gt; Z=x y);
The else z=y;
Return (z);
}

CodePudding user response:

What kind of mistake, no tip?

CodePudding user response:

Have prompted this code the scanf (" % d, % d ", & amp; A, & amp; b); There is something wrong with the tip, the execution
  • Related