var operatorArray = ['+','-','*','/'] // or =[+,-,*,/] ?
我只想随机生成数字,然后从上面的数组中随机选择算术运算符并执行等式.例如,
var firstNum = Int(arc4random_uniform(120))var secondNum = Int(arc4random_uniform(120))var equation = firstNum + operatorArray[Int(arc4random_uniform(3))] + secondNum //
上面的’等式’会起作用吗?
谢谢.
解决方法 它会 – 但你需要使用不同的运算符.单一运算符:
// declare a variable that holds a function let op: (Int,Int)->Int = (+)// run the function on two argumentsop(10,10)
使用数组,您可以使用map来应用每个数组:
// operatorArray is an array of functions that take two ints and return an intlet operatorArray: [(Int,Int)->Int] = [(+),(-),(*),(/)]// apply each operator to two numberslet result = map(operatorArray) { op in op(10,10) }// result is [20,100,1]总结
以上是内存溢出为你收集整理的ios – Swift中的算术运算符数组全部内容,希望文章能够帮你解决ios – Swift中的算术运算符数组所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)