JAVA数组的相关操作
程序员文章站
2024-03-22 19:47:34
...
JAVA数组的相关操作
- 操作
********************************************"
1–插入数据
2–显示所有数据"
3–在指定位置处插入数据";
4–查询能被3整除的数据
0–退出
********************************************"
- 代码区域
package com.hellojava;
import java.util.InputMismatchException;
import java.util.Scanner;
/**
*
* @author ZhaoBC
*
*/
public class tryDemo {
public int[] insertData() {
int[] a = new int[10];
Scanner sc = new Scanner(System.in);
// 少接收一个数据,为在指定位置插入数据做准备
for (int i = 0; i < a.length - 1; i++) {
System.out.println("请输入第" + (i + 1) + "个数据");
try {
a[i] = sc.nextInt();
} catch (InputMismatchException e) {
System.out.println("输入的数据格式有误,不能有非数字");
sc.next();
i--;
}
}
return a;
}
/**
* 要显示数组中的元素
*
* @param a 数组
* @param length 要显示数组元素的个数
*/
public void showData(int[] a, int length) {
for (int i = 0; i < length; i++) {
System.out.print(a[i] + " ");
}
System.out.println();
}
/**
*
* @param a 要插入树的数组
* @param n 要插入的数据
* @param k 插入的位置,从0开始
*/
public void insertArray(int[] a, int n, int k) {
for (int i = a.length - 1; i > k; i--) {
a[i] = a[i - 1];
}
a[k] = n;
}
/**
* 数组中可以被3整除的元素
*
* @param a
*/
public void divThree(int[] a) {
String str = "";
int count = 0;
for (int n : a) {
if (n % 3 == 0) {
str = str + n + " ";
count++;
}
}
if (count == 0) {
System.out.println("数组中没有能被3整除的数");
} else {
System.out.println("数组中可以被3整除的元素为:" + str);
}
}
/**
* 提示信息
*/
public void notice() {
System.out.println("********************************************");
System.out.println(" 1--插入数据");
System.out.println(" 2--显示所有数据");
System.out.println(" 3--在指定位置处插入数据");
System.out.println(" 4--查询能被3整除的数据");
System.out.println(" 0--退出");
System.out.println("********************************************");
}
public static void main(String[] args) {
// TODO Auto-generated method stub
tryDemo dm = new tryDemo();
Scanner sc = new Scanner(System.in);
int input = 0;
int[] a = null;
int n = 0, k = 0;// n表示要插入的数据,k表示要插入的位置
while (true) {
dm.notice();
System.out.println("请输入对应的数字进行操作");
try {
input = sc.nextInt();
} catch (InputMismatchException e) {
System.out.println("输入的数据格式有误,不能有非数字!");
sc.next();
continue;
}
if (input == 0) {
System.out.println("退出程序!");
break;
}
switch (input) {
case 1:// 插入数据
a = dm.insertData();
System.out.println("数组元素为:");
dm.showData(a, a.length - 1);
break;
case 2:
if (a != null) {
if (a[a.length - 1] == 0) {
// 如果最后的一个元素为0,说明还没有插入元素,因此不显示最后一个元素
dm.showData(a, a.length - 1);
} else {
dm.showData(a, a.length);
}
} else {
System.out.println("还未在数组中插入元素,请重新操作");
}
break;
case 3:
if (a != null) {
System.out.println("请输入您要插入的数据");
try {
n = sc.nextInt();
System.out.println("请输入您要插入的位置");
k = sc.nextInt();
} catch (InputMismatchException e) {
System.out.println("输入的数据格式有误,不能有非数字!");
sc.next();
break;
}
dm.insertArray(a, n, k);
dm.showData(a, a.length - 1);
} else {
System.out.println("还未在数组中插入数据,请重新选择操作!");
}
break;
case 4:
// 查询数组中能被3整除的元素
if (a != null) {
dm.divThree(a);
} else {
System.out.println("还未在数组中插入数据,请重新选择操作!");
}
break;
}
}
}
}
上一篇: 数组去重的方式练习