首页题库练习题目详情
Java语言程序设计单选题中等

以下哪项是数组遍历的正确方式?

Afor (int i=0; i < arr.length; i++)
Bfor (int i = arr.length; i > 0; i++)
Cfor (int i : arr)
D全部都可以