์๋ฐ
[์๋ฐ/Java] 10์ง์ 2์ง์ ๋ณํ/์ ํ
์ ์ฌ๋ฌธ์ 10์ง์ ์ ๋ ฅ๋ฐ์ 8์ง์, 16์ง์๋ก ํํํ๊ธฐ 2์ง์ ์ ๋ ฅ๋ฐ์ 10์ง์๋ก ํํํ๊ธฐ ๋ชฉํ ์ฝ๋ Integer ํด๋์ค API๋ฅผ ์ฌ์ฉํ๊ธฐ ๊ฒฐ๊ตญ 10์ง์๋ง int ํ, ๋๋จธ์ง๋ String ํ์ผ๋ก ํํ๋๋ค๋ ๊ฒ ์ ์ package JavaFestival; import java.util.Scanner; public class test1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("์ซ์ ์ ๋ ฅ >> "); int num = sc.nextInt(); String numBinary = Integer.toBinaryString(num); String numOctal = Intege..
[์๋ฐ/java] ์ฌ์ฉ์ ์ ๋ ฅ๋ฐ์ ๋ฐฐ์ด ์ธ๋ฑ์ค ์ ๋งํผ ๋ณ์ ์ถ๋ ฅํ๊ธฐ.
์ ์ฌ๋ฌธ์ ์์ฐจ๋๋ก ๋ณ ๋ฝ๊ธฐ ์ํ๋ ๋ณ ๋ชจ์ ์ถ๋ ฅํ๊ธฐ ํ์ฉ ๋ฒ์๊ฐ ๋ค์ํ๋ค ๋ชฉํ ์ฝ๋ package JavaBook; import java.util.Scanner; public class no3 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int arr[] = new int[5]; for(int i = 0;i < 4;i++) { System.out.print(i+1+"๋ฒ์งธ ๋ณ์ ์ : "); arr[i] = sc.nextInt(); } for(int i = 0;i< 4;i++) { System.out.print(arr[i]+" : "); for(int j = 0;j < arr[i];j++) { System.o..
[์๋ฐ/java] ์ค๋ณต์๋ ๋ก๋๋ฒํธ ํ๋ก๊ทธ๋จ
์๊ตฌ์ฌํญ ์ค๋ณต์์ด ๋ฝ๊ธฐ ๊ฒฐ๊ณผ๋ฌธ์ i๋ฒ์งธ ์ถ๋ ฅ ์๊ฑด ๋ฃ๊ธฐ 1~45 : ๋ก๋ ์ซ์ ๋ฒ์ ๋ชฉํ package JavaBook; import java.util.Scanner; public class no3 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int lotto[] = new int[6]; // for(int i = 0; i < 6 ; i++) { lotto[i] = (int)(Math.random() * 45)+1; for(int j = 0; j < i ; j++) { if(lotto[i]==lotto[j]) i--; } } for(int i = 0; i < 6 ; i++) { System.out.print..
[์๋ฐ/java] ์ซ์๋ฅผ ์ ๋ ฅ ๋ฐ์ 3์ ๋ฐฐ์ ์ซ์ ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ
์ ์ฌ๋ฌธ์ ์ซ์๋ฅผ ์ ๋ ฅ ๋ฐ์ 4์ ๋ฐฐ์ ์ซ์ ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ ์ซ์๋ฅผ ์ ๋ ฅ ๋ฐ์ 3์ ๋ฐฐ์์ด๋ฉฐ ์ง์์ธ ์ซ์ ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ -์๊ตฌ์ฌํญ 10๊ฐ์ ์ ์๋ฅผ ์ ๋ ฅ๋ฐ์, 3์ ๋ฐฐ์์ธ ์ซ์๋ง ๊ฒฐ๊ณผ๋ก ์ถ๋ ฅํ๊ธฐ -๋ชฉํ : package JavaBook; import java.util.Scanner; public class no3 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num[] = new int[10]; int arr[] = new int[10]; for(int i = 0; i > "); num[i] = sc.nex..