使用Java语言深入理解程序逻辑——数组
Posted 爱编程的羔羊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Java语言深入理解程序逻辑——数组相关的知识,希望对你有一定的参考价值。
使用Java语言深入理解程序逻辑——数组
一、数组的应用:
1.遍历数组元素:
//使用数组存储五位员工的姓名和薪资
String[] name = new String[5];
int[] salary = new int[5];
//使用循环对数组中的每个元素进行赋值
for (int i = 0; i < salary.length; i++)
System.out.printf("第%d位员工信息:\\n", i + 1);
System.out.print("姓名:");
name[i] = sc.next();
System.out.print("薪资:");
salary[i] = sc.nextInt();
//遍历所有数组元素,输出薪资以及年薪
System.out.println("姓名\\t薪资\\t年薪");
for (int i = 0; i < salary.length; i++)
System.out.printf("%s\\t%d\\t%d\\n", name[i], salary[i], 12 * salary[i]);
2.增强for循环(foreach循环):
(1)语法:for(数据类型 变量:数组)
//循环体
(2)例子:
int nums[] = 1,2,3,4,5,6;
for(int num : nums)
System.out.println(num);
二、数组应用(二)
1.求最大最小值:
示例:
//求解最大值
//将数组第一个元素直接赋值max
max = scores[0];
//数组其余元素与max进行比较,将较大值赋值给max
for (int i = 1; i < scores.length; i++)
if (scores[i] > max)
max = scores[i];
//输出比较结果
System.out.println("最高成绩:" + max);
2.数组排序:
使用Arrays.sort()方法(默认升序)
示例:
//定义数组,存储用户输入的成绩
int[] scores = new int[5];
//通过循环对数组进行赋值
System.out.println("请输入五位同学的成绩:");
for (int i = 0; i < scores.length; i++)
scores[i] = sc.nextInt();
//对数组元素进行排序
Arrays.sort(scores);
//输出排序结果
System.out.println("成绩由低到高:");
for (int item : scores)
System.out.println(item);
注意:倒叙就将数组的前半部分倒过来
以上是关于使用Java语言深入理解程序逻辑——数组的主要内容,如果未能解决你的问题,请参考以下文章