if語(yǔ)句
if語(yǔ)句包含一個(gè)布爾表達(dá)式后跟一個(gè)或多個(gè)語(yǔ)句。
語(yǔ)法
if語(yǔ)句在Go編程語(yǔ)言的語(yǔ)法是:
流程圖:
例子:
import "fmt"
func main() {
/* local variable definition */
var a int = 10
/* check the boolean condition using if statement */
if( a < 20 ) {
/* if condition is true then print the following */
fmt.Printf("a is less than 20/n" )
}
fmt.Printf("value of a is : %d/n", a)
}
- a is less than 20;
- value of a is : 10
if...else語(yǔ)句
if語(yǔ)句可以跟著一個(gè)可選的else語(yǔ)句,布爾表達(dá)式是假時(shí)它被執(zhí)行。
語(yǔ)法
在Go編程語(yǔ)言中的if ... else語(yǔ)句的語(yǔ)法是:
流程圖:
例子:
import "fmt"
func main() {
/* local variable definition */
var a int = 100;
/* check the boolean condition */
if( a < 20 ) {
/* if condition is true then print the following */
fmt.Printf("a is less than 20/n" );
} else {
/* if condition is false then print the following */
fmt.Printf("a is not less than 20/n" );
}
fmt.Printf("value of a is : %d/n", a);
}
- a is not less than 20;
- value of a is : 100
if...else if...else 語(yǔ)句
if語(yǔ)句可以跟著一個(gè)可選的else if ... else語(yǔ)句,這是非常有用的使用單個(gè) if...else if 語(yǔ)句聲明測(cè)試各種條件。
當(dāng)使用if , else if , else語(yǔ)句有幾點(diǎn)要記住使用:
if可以有零或一個(gè)else,它必須跟從else if后面。
一個(gè)if可以有零到個(gè)多else if并且它們必須在else之前。
一旦一個(gè)else if測(cè)試成功,其它任何剩余else if將不會(huì)被測(cè)試。
語(yǔ)法
if...else if...else在Go編程語(yǔ)言中語(yǔ)句的語(yǔ)法是:
import "fmt"
func main() {
/* local variable definition */
var a int = 100
/* check the boolean condition */
if( a == 10 ) {
/* if condition is true then print the following */
fmt.Printf("Value of a is 10/n" )
} else if( a == 20 ) {
/* if else if condition is true */
fmt.Printf("Value of a is 20/n" )
} else if( a == 30 ) {
/* if else if condition is true */
fmt.Printf("Value of a is 30/n" )
} else {
/* if none of the conditions is true */
fmt.Printf("None of the values is matching/n" )
}
fmt.Printf("Exact value of a is: %d/n", a )
}
- None of the values is matching
- Exact value of a is: 100
| |
新聞熱點(diǎn)
疑難解答
圖片精選
網(wǎng)友關(guān)注