๋ฐ์ํ java51 [Java-๊ธฐ์ด] ์ค์ต (๋ก๋ ์ถ์ฒจ ๋ฒํธ) ์ค์ต ) ๋ก๋ ๋ฒํธ๋ฅผ ๋๋ค์ผ๋ก ์ถ์ฒจํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํ์์ค. ์กฐ๊ฑด : nextInt( ) ๋ฉ์๋ ์ฌ์ฉํ๊ธฐ โ โ 1. ์ฌ์ค ๋ก๋๋ฅผ ์ํด๋ด์ ์ ๋ชฐ๋๋ค. ์ซ์๊ฐ 45๋ฒ๊น์ง ์๋๊ฒ๋;; Random ์์ฑ์๋ฅผ ์์ฑํ๊ณ nextInt( ) ๋ฉ์๋๋ฅผ ์ฌ์ฉํด์ผํ๋ค๋ ํํธ๋ฅผ ๋ฐ์๋ค. โ โ RandomLotto.java package lotto; import java.util.Random; public class RandomLotto { public static void main(String[] args) { int[] lotto = new int[7]; // ๋ก๋๋ฒํธ 7๊ฐ int cnt = 0; // ์ซ์ ์์ฑ Random rm = new Random(); System.out.print("๋ก๋๋ฒํธ ์์ฑ : ");.. 2021. 2. 24. [Java-๊ธฐ์ด] ์๊ณ ๋ฆฌ์ฆ ์ค์ต (๋ง๋ฐฉ์ง) *๋ง๋ฐฉ์ง์ด๋ ? ๋ง๋ฐฉ์ง์ ‘1๋ถํฐ n์ ๊ณฑ’๊น์ง์ ์ฐ์๋ ์์ฐ์๋ฅผ ๊ฐ๋ก, ์ธ๋ก, ๋๊ฐ์ ์ ํฉ์ด ๊ฐ์์ง๋๋ก ์ ์ฌ๊ฐํ ๋ชจ์์ผ๋ก ๋ฐฐ์ดํ ๊ฒ. โ โ ์ค์ต ) ๋ฐ์ ๊ฒฐ๊ณผ์ ๊ฐ์ด ๋์ค๊ฒ ๋ง๋์์ค. ์กฐ๊ฑด : ๋ฒํผ๋ฆฌ๋, ๋ง๋ฐฉ์ง โ โ ์์ฑ๋ชปํจ.. โ 1. ์์๋ ๋ณด๋ฉด์ ํ ๋ผ๋๊น ๋ปํนํ๋ค. (์์๋ ๋ณด๋๋ฒ ์๊ฐ๋ฅด์ณ์ค) ๊ทธ๋๋ ์ ์๋๊ป์ ์น ํ์๋ค ๋์ถฉ ์ด๋ค ์์ผ๋ก ํด์ผํ๋์ง ํฐ ํ์ ์ ์ด์ฃผ์ฌ. int N = 0; // ๋ฐฐ์ด ๊ฐ int k = 0; // ๋ง๋ฐฉ์ง ์์ ๋ค์ด๊ฐ ์ซ์ int[][] arr = new int[N][N]; // ๋ฐฐ์ด int i = 1; // ํ int j = (N / 2) + 1; // ์ด // ๋ฐฐ์ด ์ ๋ ฅ ๋ถ๋ถ System.out.println("๋ง๋ฐฉ์ง์ ๊ตฌํ ๋ฐฐ์ด์ ํฌ๊ธฐ๋ฅผ ์ ๋ ฅํ์ธ์ : "); N .. 2021. 2. 24. [Java-๊ธฐ์ด] ์๊ณ ๋ฆฌ์ฆ ์ค์ต (๋ฒ๋ธ์ ๋ ฌ) Q) ๋ฒ๋ธ ์ ๋ ฌ ๋ฒ๋ธ ์ ๋ ฌ์ ์ ์ผ ํฐ ์ซ์๋ถํฐ ๋ค๋ก ๋ณด๋ด๋ฉด์ ์ ๋ ฌํ๋ค(๊ฐ์ฅ ๊ธฐ๋ณธ์ ์ธ ์ ๋ ฌ ๋ฐฉ๋ฒ) ์์์๋ถํฐ ๋๊ฐ์ฉ ๋น๊ตํด๊ฐ๋ฉด์ ์ ์ผ ํฐ ๊ฐ์ ๋ค๋ก ๋ณด๋ด๋ ๋ฐฉ๋ฒ. ๋ฐ์ดํฐ์ ์ด๋ ํ์๋ ์ ํ ์ ๋ ฌ๋ณด๋ค ๋ง์. โ โ ์ ๋ฒ ์ ํ์ ๋ ฌ์์ ์กฐ๊ธ๋ง ๊ณ ์น๋ฉด ๋จ โ BubbleSort.java package algorithm; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class BubbleSort { public static void main(String[] args) throws IOException { BufferedReader inbr = new BufferedReader(new.. 2021. 2. 24. [Java-๊ธฐ์ด] ์ค์ต (ํ์ ์ฐ์ถ ํ๋ก๊ทธ๋จ 2) โถ ํ๋ก๊ทธ๋จ ์ ๊ทธ๋ ์ด๋ํ๊ธฐ(์ด์ ๋ง๋ ํ์ ์ฐ์ถ ํ๋ก๊ทธ๋จ์ ๋ฐํ์ผ๋ก!) โ *๊ณผ๋ชฉ๊ณผ ํ์ ์ ์ฑ ์ด ์ถ๊ฐ๋๋ ๊ฒฝ์ฐ โ Define.java package utils; public class Define { public static final int KOREAN = 1001; // ๊ตญ์ด public static final int MATH = 2001; // ์ํ public static final int DANCE = 3001; // ๋ฐฉ์ก ๋์ค public static final int ENGLISH = 4001; // ์์ด public static final int AB_TYPE = 0; // ์ผ๋ฐ ๊ณผ๋ชฉ ํ์ ์ฐ์ถ ์ ์ฑ public static final int SAB_TYPE = 1; // ํ์ ๊ณผ๋ชฉ ํ์ .. 2021. 2. 24. [Java-๊ธฐ์ด] ์ค์ต (ํ์ ์ฐ์ถ ํ๋ก๊ทธ๋จ) โถ ํ์ ์ฐ์ถ ํ๋ก๊ทธ๋จ ๋ง๋ค๊ธฐ *๋ฌธ์ ์ ์ํ๊ธฐ โ Student.java package school; import java.util.ArrayList; public class Student { private int studentID; // ํ๋ฒ private String studentName; // ์ด๋ฆ private Subject majorSubject; // ํ์ ๊ณผ๋ชฉ private ArrayList scoreList = new ArrayList(); public Student(int studentID, String studentName, Subject majorSubject) { this.studentID = studentID; this.studentName = studentName; this.ma.. 2021. 2. 24. [Java-๊ธฐ์ด] ๊ทธ ์ธ ์ ์ถ๋ ฅ ํด๋์ค โถ ๊ทธ ์ธ ์ ์ถ๋ ฅ ํด๋์ค โ *File ํด๋์ค File ํด๋์ค๋ ๋ง๊ทธ๋๋ก ํ์ผ์ด๋ผ๋ ๊ฐ๋ ์ ์ถ์ํํ ํด๋์ค์ด๋ค. File ํด๋์ค์ ๋ณ๋์ ์ ์ถ๋ ฅ ๊ธฐ๋ฅ์ ์์ง๋ง ํ์ผ ์์ฒด์ ๊ฒฝ๋ก๋ ์ ๋ณด๋ฅผ ์ ์ ์๊ณ ํ์ผ์ ์์ฑํ ์๋ ์๋ค. ์์ฑ์ ์ค๋ช File(String pathname) pathname์ ๋งค๊ฐ๋ณ์๋ก ๋ฐ์ ํ์ผ์ ์์ฑํ๋ค. โ โ FileTest.java package stream.others; import java.io.File; import java.io.IOException; public class FileTest { public static void main(String[] args) throws IOException { File file = new File("c:\\java\\newFile... 2021. 2. 23. ์ด์ 1 2 3 4 5 6 ยทยทยท 9 ๋ค์ ๋ฐ์ํ