×

Exercise: JAVA Arrays and Loops





回答错误!














完成

你已经完成这些练习!

你想再做一遍吗?










恭喜你!


你完成了来自 W3Schools.com 的 JAVA 数组和循环练习。



在以下平台分享






What is the output of the following code?
String[] cars = {"Volvo", "BMW", "Ford"};
for (int i = 0; i < cars.length; i++) {
  System.out.println(cars[i]);
}