第二章 Java语言基础
1.编写一个整数数组(长度为5),从键盘上依次输入所有的元素,对数组进行排序,然后用foreach输出所有的元素。
import java.util.Arrays;
import java.util.Scanner;
public class Homework2_1 {
public static void main(String[] args) {
int cnt=0;
int[] numbers= new int[5];
Scanner in= new Scanner(System.in);
System.out.println("请输入五个数:");
for(cnt=0;cnt<5;cnt++) {
numbers[cnt]=in.nextInt();
}
Arrays.sort(numbers);
for(int x:numbers)
System.out.println(x+" ");
}
}
2.定义一个double型数组d1,并进行初始化(长度为5-10之间),编写代码实现d1的克隆,并将其赋值给数组d2,要求d2中的元素与d1完全相同,且具有自己的内存空间
public class Homework2_2 {
public static void main(String[] args) {
double[] d1= {2021,10,12,8,52};
for(double x:d1)
System.out.println(x+" ");
double[] d2= new double[5];
System.arraycopy(d1, 0, d2, 0, 5);
for(double x:d2)
System.out.println(x+" ");
}
}
3.编程比较两个String对象的大小,若字符串1和字符串2相等,显示相同;若字符串1和字符串2不相等,则显示第一个不同字符的差值;若字符串1和字符串2仅长度不同,则显示两者长度的差值(可在main方法中之前对两个String对象赋值,通过赋不同的值来测试不同的情况)。
import java.util.Scanner;
public class Homework2_3 {
public static void main(String[] args) {
Scanner in= new Scanner(System.in);
System.out.println("请输入要比较的字符串");
String s1= new String(in.nextLine());
String s2= new String(in.nextLine());
System.out.println(s1.compareTo(s2));
}
}
|