如何在xcode中随机显示数学符号

时间:2012-07-09 08:46:59

标签: iphone ios5 xcode4.3

我知道如何使用下面的代码从0到9随机显示数字。

number = arc4random() % 10;

但数学符号随机怎么样?我有+, - ,x,/符号,我想随机显示它。

2 个答案:

答案 0 :(得分:1)

你可以在0到3之间做一个随机的,例如0是+,1是 - ,2是/,3是*。如果你可以解决这个问题,请定期。

答案 1 :(得分:0)

int number = arc4random() % 4;
NSString *string = @"+,-,x,/";
NSLog(@"sign = %@", [[string componentsSeparatedByString:@","] 
objectAtIndex:number]);