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]);