분류 전체보기227 bubble sorting package prob_method.answ; /* * [출력결과] * 내림 차순 결과 31 22 16 11 10 9 오름 차순 결과 9 10 11 16 22 31 */ public class Prob007_method { public static void main(String[] args) { int[] arr = { 10, 22, 9, 16, 11, 31 }; int[] result1 = sort(arr, "desc"); int[] result2 = sort(arr, "asc"); System.out.println("내림 차순 결과"); for (int i = 0; i < result1.length; i++) { System.out.println(result1[i]); } System.out.prin.. 2022. 3. 30. [자바 JAVA] 주어진 수까지의 소수 구하기(break 활용하기) 원하는 결과: 실수는 1과 자신 외에 나눠지는 값이 없는 1보다는 큰 자연수. 즉 자신 이외의 숫자로 나눴을 때 나눠지면 실수가 아닌 것. 그것에 입각해서 코드를 구현한다. 답: public class Prob006_method { public static void main(String[] args) { System.out.println(">"); primeNumber(15); System.out.println(">"); primeNumber(32); } private static void primeNumber(int num) { // 구현하세요. for (int i = 2; i 2022. 3. 29. 백준 2739 구구단전문가 나야나 문제 답: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int input = sc.nextInt(); for(int i = 1;i < 10; i++) { int res = input * i; System.out.printf("%d * %d = %d\n",input,i,res); } } } 2022. 3. 29. 백준 2742 기찍 N 답 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int input = sc.nextInt(); for(int i = input;i > 0; i--) { System.out.println(i); } } } 쉽네 2022. 3. 29. Java 기초 배열 Array 배열 변수: 하나의 값을 저장하기 위한 메모리 공간 배열: 서로 관련이 있고 데이터 타입이 같은 데이터의 집합 JVM메모리구조 stack & heap new 해서 생성하면 heap영역에 생성됨. 그냥 변수에 값 넣으면 스택메모리 저장 배열형식 배열생성 - 메모리 생성(확보) new 키워드를 이용해서 배열을 생성 참조 데이터 타입을 가지고 메모리를 확보할 때 new라는 키워드를 사용 각 요소(element)마다 인덱스가 0부터 주어짐. 초기값을 할당하면서 배열을 생성 이렇게 할 때는 배열의 크기를 지정할 수 없다. 배열과 반복문 데이터 유형별 초기값 2차원배열 행열 바꿔서 출력해보기 헷갈림 연습문제 //[데이터] //홍길동 90 85 40 //이영희 100 35 75 // //[출력결과] //홍길동 90 .. 2022. 3. 29. 2741 백준 갑자기 쉬운문제 주냐 문제 답 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); for (int i = 1; i 2022. 3. 29. 이전 1 ··· 30 31 32 33 34 35 36 ··· 38 다음 728x90