Else

else

1 Bash[ | ]

He="John Smith"
if [ "$He" = "John Smith" ]; then
	echo "He is John Smith"
else
	echo "He is not John Smith"
fi
# He is John Smith

2 Go[ | ]

package main

import "fmt"

func main() {
	if 7%2 == 0 {
		fmt.Println("7 is even")
	} else {
		fmt.Println("7 is odd")
	}

	if 8%4 == 0 {
		fmt.Println("8 is divisible by 4")
	}

	if num := 9; num < 0 {
		fmt.Println(num, "is negative")
	} else if num < 10 {
		fmt.Println(num, "has 1 digit")
	} else {
		fmt.Println(num, "has multiple digits")
	}
}

3 PHP[ | ]

if ( 1 == 1 ) {
	echo "True";
} else {
	echo "False";
}
# True
if ( 1 == 2 ):
	echo "True";
else:
	echo "False";
endif;
# False

4 Python[ | ]

if 1==1:
	print(True)
else:
	print(False)
# True
if 1==2:
	print(True)
else:
	print(False)
# False

5 Perl[ | ]

if ( 1 eq 1 ) {
	print "True";
} else {
	print "False";
}
# True
if ( 1 eq 2 ) {
	print "True";
} else {
	print "False";
}
# False

6 Ruby[ | ]

if 43 > 42
	puts 'true'
else
	puts 'false'
end
# true

7 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}