0
C# help
Can someone explain the last question in methods module 3 last question. I canât work out the answer.
2 Answers
0
Please link the question here
0
Here is the answer, but can you ask a more detailed question?
int Max(int a, int b)
{
if (a > b)
return a;
else
return b;
}