목록2025/04/18 (1)
anthia의 dayLog

현시점 3일 전아직도 이거 보고 있으면난.. 이번 시험은 50점을 목표로 간다. 2024년 2회 차 기출 1. 다음 Java로 구현된 프로그램을 분석하여 그 실행 결과를 쓰시오. public class Main { public static void check(int[] x, int[] y) { if(x==y) System.out.print("O"); else System.out.print("N"); } public static void main(String[] args) { int a[] = new int[] {1, 2, 3, 4}; int b[] = new int[] {1, 2, 3, 4}; int c[] = new int[] {1, 2, 3}; check(a, b); chec..
Study 비전공
2025. 4. 18. 15:00