标签:static 如何 修改 最大 rgs http code 练习 print
增强型for循环在遍历一个数组的时候会更加快捷
步骤 1 : 增强型for循环
注:增强型for循环只能用来取值,却不能用来修改数组里的值
public class HelloWorld {
public static void main(String[] args) {
int values [] = new int[]{18,62,68,82,65,9};
//常规遍历
for (int i = 0; i < values.length; i++) {
int each = values[i];
System.out.println(each);
}
//增强型for循环遍历
for (int each : values) {
System.out.println(each);
}
}
}
练习: 最大值
(用增强型for循环找出最大的那个数)
答案:
public class HelloWorld {
public static void main(String[] args) {
int values [] = new int[]{18,62,68,82,65,9};
//数组中的内容是
for (int each : values) {
System.out.print(each+" ");
}
System.out.println();
int max = -1;
for (int each : values) {
if(each>max)
max = each;
}
System.out.println("最大的一个值是:"+max);
}
}
标签:static 如何 修改 最大 rgs http code 练习 print
原文地址:https://www.cnblogs.com/jeddzd/p/11399971.html