Current location - Loan Platform Complete Network - Big data management - What is the maximum data input of the keyboard?
What is the maximum data input of the keyboard?
# include & ltstdio.h & gt

int main()

{int a,b,c,max

Scanf("%d%d%d ",& i, & ampb & amp;; c); //Read three integers

If (a & gtb)max = a;; //In these two lines, take the larger number from A and B and give it to max.

else max = b;

if(c & gt; max)max = c; //Look at the third number. If it is larger, update the value of max to c.

Printf ("Max =%d\n ",Max); //Output the maximum value of three numbers.

Returns 0;

}