본문 바로가기
웹 프로그래밍 기초/자바기반의 웹&앱 응용SW 개발자

코로나 휴강 대체할 t형의 복습문제12.

by oncerun 2020. 3. 8.
반응형

3. 두 개의 정수형 배열을 만들어 각각 2 3 5 7 11 17과 1 3 5 7 9 11로 초
기화한 뒤 두 배열의 동일원소 출력하기
출력 예제
1번째: 3
2번째: 5
3번째: 7
4번째: 11

import java.util.Scanner;

public class corona12 {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int[] num1 = new int[6];
		num1[0] = 2;
		num1[1] = 3;
		num1[2] = 5;
		num1[3] = 7;
		num1[4] = 11;
		num1[5] = 17;

		int[] num2 = new int[6];
		num2[0] = 1;
		num2[1] = 3;
		num2[2] = 5;
		num2[3] = 7;
		num2[4] = 9;
		num2[5] = 11;
		int idx = 1;
		for (int i = 0; i < 6; i++) {
			for (int j = 0; j < 6; j++) {
				if (num1[i] == num2[j]) {
					System.out.printf("%d번째 :%d\n", idx, num1[i]);
					idx++;
				}
			}
		}
	}
}
반응형

댓글