프로그래밍 썸네일형 리스트형 11654 아스키 코드 123456789import java.util.*; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); String in = sc.next(); System.out.println((int)in.charAt(0)); }}Colored by Color Scriptercs 더보기 10039 평균 점수 1234567891011121314151617import java.util.*; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int score; int sum = 0; for(int i=0; i 더보기 2920 음계 12345678910111213141516171819202122import java.util.*; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int[] Cmajor = new int[8]; int[] a = {1, 2, 3, 4, 5, 6, 7, 8}; int[] b = {8, 7, 6, 5, 4, 3, 2, 1}; for(int i=0; i 더보기 8958 OX퀴즈 123456789101112131415161718192021222324252627282930import java.util.*; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String[] a = new String[n]; int[] score = new int[n]; for(int i=0; i 더보기 2577 숫자의 개수 123456789101112131415161718192021import java.util.*; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); int result = a*b*c; String num = Integer.toString(result); int[] count = new int[10]; for(int i=0; i<num.length(); i++) { count[num.charAt(i)-'0']++; } for(int i=0; i<10; i++) { Sys.. 더보기 1152 단어의 개수 1234567891011121314151617181920import java.util.*; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); String in = sc.nextLine(); in = in.trim(); if(in.isEmpty()) { System.out.println(0); } else { int count = 1; for(int i=1; i 더보기 백준 acm 2448 - 별찍기 (11) 123456789101112131415161718192021222324252627282930import java.util.*; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int K = (int) (Math.log(N / 3) / Math.log(2)); String[] star = new String[N]; star[0] = " * "; star[1] = " * * "; star[2] = "*****"; int copy = 3; for (int i = 1; i 더보기 ICS 스터디 정식 등록 전 중간점검 - 파이썬 기초 문법 공부 - 파이썬 게임 제작 / 세븐포커 - 파이썬 + 장고 or 파이썬 + 플라스크 공부 더보기 백준 acm 4673 - 셀프 넘버 1234567891011121314151617181920212223242526272829import java.util.Arrays;import java.util.List; public class Main { public static void main(String args[]) { d(10000); } static void d(int n) { int next; Integer[] intnum = new Integer[n+1]; for (int i = 1; i 더보기 백준 acm 7453 - 합이 0인 네 정수 https://www.acmicpc.net/problem/7453 - 브루트 포스- 이분탐색 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354import java.util.Arrays;import java.util.Scanner; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[][] get = new int[4][n]; for (int i = 0; i 더보기 이전 1 ··· 4 5 6 7 8 다음 목록 더보기