The main ()
{int a, b;
Printf (" please enter the number two larger \ n;" );
The scanf (" % d, % d ", & amp; A, & amp; B);
If (a>=b)
Printf (" maximum value for % d ", a);
The else
Printf (" maximum value for % d ", b);
}
Why executed only if the first statement below
CodePudding user response:
% d, % dNot
% d, % d
CodePudding user response:
The