Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Uso de else if
// informaticadeguatemala.com // else if #import <Foundation/Foundation.h> int main (int argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; int vnum = 10; if (vnum == 6) NSLog(@"value es seis."); else if (vnum == 0) NSLog(@"value es cero."); else if (vnum == 10) { NSLog(@"value es diez"); NSLog(@"entre nueve "); NSLog(@"y once ");} else NSLog(@"vnum no es igual a 6, 0 o 10"); [pool drain]; return 0; }
run
|
edit
|
history
|
help
0
NSSet ex
Etudiant.m
array
string replace
abc
Inheritance Example
emp class
if con boleanos 01
basic arithmatic Opreation in objective C
Even and Odd numbers by Erick Benites