TEL:400-8793-956
当前位置:程序、服务器

While 循环问题

提问者: 近期获赞: 浏览人数: 发布时间:2021-06-15 09:32:44

 问:我被这个挑战困住了。

 
我相信我将使用下面的公式,只是我要用挑战问题的数据替换 todo.count 和 todo[index]。可以陪我度过这个挑战吗?谢谢!
 
无功指数 = 0
 
while index < todo.count { print(todo[index]) index++ }
 
 while_loops.swift
让 数字 =  [ 1 ,  2 ,  3 ,  4 ,  5 ,  6 ,  7 ,  8 ,  9 ,  10 ]
 
 
答:下面的代码片段将引导您了解这是如何完成的。
 
正如您所提到的,您希望使用上一个示例中使用的相同步骤。
 
var  index  =  0
而 index  <  todo 。计数 { 
打印(待办事项[索引])索引++ }    
    
 
在那个例子中,你有一个名为todo的数组,但对于这个挑战,数组被命名为 numbers。所以你所要做的就是用numbers替换todo。
 
var  index  =  0    //
当 index  <  numbers 时    
,索引表示数组当前的位置。count { // 如果位置在数组之外 stop print ( numbers [ index ]) index ++ // 转到数组的下一个位置}    
上一篇: Android Studio 中的 Git
下一篇: getClass() 实际返回的是什么类