哈哈哈,自己写的数组
Posted 宋建楠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了哈哈哈,自己写的数组相关的知识,希望对你有一定的参考价值。
import java.util.*;
public class Demo1 {
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
int[] number={1,4,2,5,6};
int n=0;
System.out.println("请输入换成40的数字");
int a=input.nextInt();
for(int i=0;i<number.length;i++){
if(number[i]==a){
number[i]=40;
}
}//a变40
System.out.println("请输入要删除的数字");
int b=input.nextInt();
for(int i=1;i<number.length;i++){
if(number[i]==b){n=i;
break;
}//获取要改的位置
}
for(;n<number.length-1;n++){
number[n]=number[n+1];
}//全部往前移位
int[] m=new int[number.length-1];
for(int l=0;l<number.length-1;l++){
m[l]=number[l];
}//复制给新的数组
for(int k=0;k<m.length;k++){
System.out.print(m[k]);
}
}
}
在蓝桥确实学到了好多好多
以上是关于哈哈哈,自己写的数组的主要内容,如果未能解决你的问题,请参考以下文章