Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何使用下面的代码从 0 到 9 随机显示数字。
number = arc4random() % 10;
但是数学符号的随机性怎么样?我有 +、-、x 和 / 符号,我想随机显示它。
您可以在 0 和 3 之间进行随机选择,例如 0 是 +,1 是 -,2 是 /,3 是 *。如果你能解决这个问题,请定期使用。
int number = arc4random() % 4; NSString *string = @"+,-,x,/"; NSLog(@"sign = %@", [[string componentsSeparatedByString:@","] objectAtIndex:number]);