例:给两个数,求两数中的大者(双分支)
#include <stdio.h>
int main( )
{
int a,b,c;
scanf("%d %d", &a, &b);
if(a>b)
{
c=a; //if语句,如果a>b,则将a的值赋给c
}
else
{
c=b; //否则,将b的值赋给c
}
printf("max=%d\n",c);
return 0;
}
再解:给两个数,求两数中的大者(单分支)
#include <stdio.h>
int main( )
{
int a,b,t;
scanf("%d %d", &a, &b);
if(a<b) //如果a>b,交换a,b,使a为大者
{
t=a;
a=b;
b=t;
}
printf("max=%d\n",a);
return 0;
}