(C++) - 백준(BOJ) 21591 : Laptop Sticker
https://www.acmicpc.net/problem/21591 21591번: Laptop Sticker The single line of input contains four integers $w_c$, $h_c$, $w_s$ and $h_s$ ($1 \le w_c, h_c, w_s, h_s \le 1,000$), where $w_c$ is the width of your new laptop computer, $h_c$ is the height of your new laptop computer, $w_s$ is the width of the laptop s www.acmicpc.net 눈치껏 때려맞히는 문제였습니다. 📕 풀이방법 📔 입력 및 초기화 새로산 노트북의 w, h와 스티커의 w, h를 선언 ..
(C++) - 백준(BOJ) 21354 : Äpplen och päron
https://www.acmicpc.net/problem/21354 21354번: Äpplen och päron En rad med två heltal $A,P$ ($0 \le A,P \le 1000)$, antalet äpplen Axel har lyckats sälja, och antalet päron Petra har lyckats sälja. www.acmicpc.net if문을 써보는 문제였습니다. 📕 풀이방법 📔 입력 및 초기화 판 사과의 개수 apple, 판 배의 개수 pear, axel의 매출 axel, petra의 매출 petra를 선언하고 apple, pear에 입력받습니다. 📔 풀이과정 사과 1개당 7, 배 1개당 13이므로 axel = apple * 7, petra = pear * ..
(C++) - 백준(BOJ) 20839 : Betygsättning
https://www.acmicpc.net/problem/20839 20839번: Betygsättning På första raden står tre heltal $1 \leq x \leq 30$, $1 \leq y \leq 30$ och $1 \leq z \leq 30$, antalet A-, C- och E-kriterier som finns. På den andra raden står tre heltal $0 \leq x' \leq x$, $0 \leq y' \leq y$ och $0 \leq z' \leq z$, antalet A-, C- o www.acmicpc.net 입출력, 함수, if문을 사용해 푼 문제였습니다. 📕 풀이방법 📔 입력 및 초기화 a기준, c기준, e기준 점수, 각 기준을 ..