if語句的三種形式?
1)簡化形式 if(表達式) 語句塊 如: if(x>y) printf(“%d”,x);
2)一般形式 if (表達式) 語句塊1 else 語句塊2 例如: if (x>y) printf(“max=%d”,x); else printf(“max=%d”,y);
3)嵌套形式含義:一條if語句重又包含另一個if語句稱為if語句的嵌套.格式:if( ) if( ) 語句塊1 else 語句塊2else if( ) 語句塊3 else 語句塊4例如:if (score>90) printf(“very good”);else if(score>80) printf(“good”); else if(score>60) printf(“ok”); else printf(“bad”); 如果語句塊包含多個語句,用{}就行了例如:if(n>0){ printf("%d",n); printf("是正數\n");}
上一篇ie瀏覽器f12功能詳解
下一篇浙大mem報什么班