Skip to content

Latest commit

 

History

History
executable file
·
14 lines (11 loc) · 208 Bytes

File metadata and controls

executable file
·
14 lines (11 loc) · 208 Bytes

if else if else

NSInteger value = 0;

if (value > 0) {
		NSLog(@"The value grater 0.");
} else if (value == 0) {
		NSLog(@"The value equal to 0.");
} else {
		NSLog(@"The value less 0.");
}