我是靠谱客的博主 平常小松鼠,最近开发中收集的这篇文章主要介绍Java语言程序设计 7.26(完全相同的数组),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

7.26 (Strictly identical arrays) The arrays list1 and list2 are strictly identicalif their corresponding elements are equal. Write a method that returns true if list1 and list2 are strictly identical, using the following header:

public static boolean equals(int[] list1, int[] list2)

Write a test program that prompts the user to enter two lists of integers and displayswhether the two are strictly identical. Here are the sample runs. Note that the first number in the input indicates the number of the elements in the list. This number is not part of the list.

7.26(完全相同的数组)如果数组list1和list2的对应元素相等,则它们是完全相同的。编写一个方法,如果list1和list2完全相同,则使用以下标头返回true:

public static boolean equals(int[] list1, int[] list2)

编写一个测试程序,提示用户输入两个整数列表,并显示两者是否完全相同。以下是运行示例。请注意,输入中的第一个数字表示列表中元素的数量。此号码不在列表中。

import java.util.Scanner;
public class Unite7Test26 
{
	public static void main(String[] args) 
	{
		Scanner input = new Scanner(System.in);
		int []List1 =new int [6];
		int []List2 =new int [6];
		System.out.println("请输入第一个数组列:");
		for(int i = 0;i<=5;i++) 
		{
			int n = input.nextInt();
			List1[i] = n;
		}
		System.out.println("请输入第二个数组列:");
		for(int i = 0;i<=5;i++) 
		{
			int n = input.nextInt();
			List2[i] = n;
		}
		if(equals(List1,List2) == true) 
		{
			System.out.println("两个数组相同");
		}else 
		{
			System.out.println("两个数组不相同");
		}
	}
	public static boolean equals(int[] list1, int[] list2) 
	{
		for(int i = 0;i <= 5;i++) 
		{
			if(list1[i]!= list2[i]) 
			{
				return false;
			}
		}
		return true;
	}
}

结果如下:

最后

以上就是平常小松鼠为你收集整理的Java语言程序设计 7.26(完全相同的数组)的全部内容,希望文章能够帮你解决Java语言程序设计 7.26(完全相同的数组)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部