我是编程领域的初学者。我已经使用过基础知识,但我不知道如何执行以下操作:
使用增强的for循环结构重写以下循环。这里,values是一个浮点数数组。
for (int i = 0; i < values.length; i++) { total = total + values[i]; }
答案 0 :(得分:4)
enhanced for-loop
也称为for-each
循环。可能会像
for (float value : values) { // <-- for each value in values
total += value; // <-- add the value to the total.
}
答案 1 :(得分:0)
for(float f:values){total + = f; }
答案 2 :(得分:0)
使用增强型for循环
mylst = []
for sentence in contents: # for each line in contents
sentence = sentence.split() # eliminate spaces and turn into a list
phrase = sentence[1] + " of " + sentence[0]
mylst.append(phrase)
return mylst
如果您愿意,可以查看本教程以了解更多信息:http://www.java-tips.org/java-se-tips-100019/24-java-lang/480-the-enhanced-for-loop.html