C语言中if控制语句的例子
第一个例子,三个数中求最大的:
#include <stdio.h>
main()
{
int a,b,c;
int max;
printf(“input 3 values of integer:”);
scanf(“%d%d%d”,&a,&b,&c);
if(a>b)
max=a;else
max=b;
if(max<c)
max=c;
printf(“the max of %d,%d,%d is %d n”,a,b,c,max);
}
第二个例子
#include <stdio.h>
main()
{
int i,m,n,x,y;
char s[80];
scanf(“%s”,s);
m=n=x=y=0;
i=0;
while(s[i]!=’