[백준알고리즘] 10996번 별 찍기 - 21 파이썬(Python) 소스 코드 # 변수 inputNum = int(input()) odd = inputNum - inputNum // 2 # 홀수번째 even = inputNum // 2 # 짝수번째 # Main for i in range(inputNum): print("* " * odd) print(" *" * even) 출력 결과 5. 알고리즘/5_3 백준 2020. 9. 1. 11:08
[백준알고리즘] 2446번 별 찍기 -9 파이썬(Python) 소스 코드 # 변수 선언 inputNum = int(input()) # 별 출력 for i in range(inputNum): print(' '*i, '*'*((inputNum-i)*2-1)) for i in range(inputNum-2, -1, -1): print(' '*i, '*'*((inputNum-i)*2-1)) 출력 결과 5. 알고리즘/5_3 백준 2020. 8. 31. 18:30
[백준알고리즘] 2523번 별 찍기 -13 파이썬(Python) 소스 코드 # 변수 선언 inputNum = int(input()) # 별모양 표현 for i in range(1,inputNum+1): print('*'*i) for j in range(inputNum-1, 0, -1): print('*'*j) 출력 결과 5. 알고리즘/5_3 백준 2020. 8. 30. 18:01
[백준알고리즘] 5543번 상근날드 파이썬(Python) 소스 코드 # 변수 선언 hamb = [] beve = [] # 변수 입력 for i in range(0, 3): inputNum = int(input()) hamb.append(inputNum) for i in range(0, 2): inputNum = int(input()) beve.append(inputNum) # 결과값 출력 print(min(hamb) + min(beve) - 50) 출력 화면 5. 알고리즘/5_3 백준 2020. 8. 29. 17:38
[백준알고리즘] 10039번 평균 점수 파이썬(Python) 소스 코드 # 변수 선언 user = [0]*5 # [0, 0, 0, 0, 0] # 변수 입력 for i in range(len(user)): user[i] = int(input()) # 40미만일 경우 40으로 set if user[i] < 40: user[i] = 40 # 평균 값 avg = (sum(user)/len(user)) print(int(avg)) 출력 결과 5. 알고리즘/5_3 백준 2020. 8. 28. 17:16
[백준알고리즘] 14681번 사분면 고르기 파이썬(Python) 소스 코드 # 사용자 입력 userInputA = int(input()) userInputB = int(input()) # x사분면 1, 2, 3, 4 # 사분면 확인 def exe(): if userInputA > 0 and userInputB > 0 : print(1) elif userInputA 0 : print(2) elif userInputA 0 and userInputB < 0 : print(4) # main exe() 출력 결과 5. 알고리즘/5_3 백준 2020. 8. 27. 16:41
[백준알고리즘] 1008번 A/B 자바(JAVA) 소스 코드 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int A = sc.nextInt(); int B = sc.nextInt(); System.out.println((double)A/B); } } 출력 결과 5. 알고리즘/5_3 백준 2020. 5. 2. 17:40
[백준알고리즘] 1110번 더하기 사이클 자바(JAVA) 소스 코드 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc =new Scanner(System.in); int N = sc.nextInt(); sc.close(); int res = N; int tmp = 0; int cnt = 0; // 26 -> 2+6 = 8 -> 68 6+8 = 14 -> 84 8+4 = 12 -> 42 4+2= 6 =====26) 4번. do { tmp = res / 10 + res % 10; // 2+6 = 8 res = res%10*10 + tmp % 10; cnt++; } while(N!=res); System.out.println(cnt); } }.. 5. 알고리즘/5_3 백준 2020. 5. 2. 17:38
[백준알고리즘] 1193번 분수찾기 자바(JAVA) 소스 코드 import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); int.. 5. 알고리즘/5_3 백준 2020. 5. 2. 17:35
[백준알고리즘] 2588번 곱셈 자바(JAVA) 소스 코드 import java.util.Scanner; 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 = 10; int tmp = B; System.out.println(A * (B%c)); B /= c; System.out.println(A * (B%c)); B /= c; System.out.println(A * (B%c)); System.out.println(A * tmp); } } 출력 결과 5. 알고리즘/5_3 백준 2020. 5. 2. 17:32
[백준알고리즘] 2753번 윤년 자바(JAVA) 소스 코드 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int year = sc.nextInt(); if(year%4 == 0 && (year % 100 != 0 || year % 400 == 0)) { System.out.println(1); } else { System.out.println(0); } } } 출력 결과 5. 알고리즘/5_3 백준 2020. 5. 2. 17:29