「30日間iPhoneのプログラミングに精通」-Day 8-分岐解決器
432 ワード
分岐解決器とは,一定の値範囲内で乱数をとることであり,以下は2つの形式の乱数をとることである.
//100
-(IBAction)oneToHundred {
int rNumber = rand() % 100;
result.text = [[NSString alloc] initWithFormat:@"%d", rNumber];
}
// ,
-(IBAction)russianRoulette {
int rNumber = rand() % 6;
switch (rNumber) {
case 0:
result.text = @" !!!";
break;
default:
result.text = @" ...";
break;
}
}