if语句 第二种形式为: if(表达式)语句1;else 语句2; 例如:输入两个整数,输出其中的大数。 #include "stdio.h" int main() { int a, b; a=5;b=10; printf("\n input two numbers: a=%d b=%d",a,b); if(a>b) printf("max=%d\n",a); else printf("max=%d\n",b); return 0; }