Objective-C Random int

时间:2012-03-29 19:38:24

标签: objective-c random int

例如,我有2个整数和1个输出。

    int IntNumberOne = 100;
    int IntNumberTwo = 30;

    NSLog(@"");

我希望输出只显示两个整数中的一个,并在每次启动此程序时随机化。 怎么做?

1 个答案:

答案 0 :(得分:2)

使用arc4random()函数随机选择数字:

NSLog(@"%d", arc4random()%2 ? IntNumberOne : IntNumberTwo);