LIST 🗂️

https://www.acmicpc.net/problem/14681 14681번: 사분면 고르기 점 (x, y)의 사분면 번호(1, 2, 3, 4 중 하나)를 출력한다. www.acmicpc.net import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); if (x > 0 && y > 0){ //1사분면 System.out.println("1"); } else if (x 0){ //2사분면 System.out.println("2"); } else..
https://www.acmicpc.net/problem/9498 9498번: 시험 성적 시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오. www.acmicpc.net import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int A = in.nextInt(); if(A >= 90){ System.out.println("A"); } else if(A >= 80){ System.out.println("B"); } else if..
https://www.acmicpc.net/problem/1330 1330번: 두 수 비교하기 두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오. www.acmicpc.net import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int A = in.nextInt(); int B = in.nextInt(); if(A>B){ System.out.println(">"); // A가 B보다 큰 경우 } else if(A
https://www.acmicpc.net/problem/2753 2753번: 윤년 연도가 주어졌을 때, 윤년이면 1, 아니면 0을 출력하는 프로그램을 작성하시오. 윤년은 연도가 4의 배수이면서, 100의 배수가 아닐 때 또는 400의 배수일 때이다. 예를 들어, 2012년은 4의 배수이면서 www.acmicpc.net 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){ // 4의 배수이고 100의 배수가..
모듈화 : 소프트웨어를 각 기능별로 나눈 것 목적에 맞는 기능들로 모듈화하여 나누는 것이 좋은 모듈화! 모듈 : 모듈화로 나눠진 각각의 기능을 가진 것 모듈의 기능은 독립적으로 수행되어야 하고, 다른 모듈과는 연관도가 적어야지 좋은 것 응집도는 높게, 결합도는 낮게 결합도 : 서로 다른 모듈 간에 연관된 관계, 간단할 일만 주고 받기 Java에서는 class 간에 결합도가 높다 = 연관도가 높다 로 판단. 해당 class를 변경하면 연관된 class도 변경하기. 변경하지 않으면 다른 class에서도 재사용하기 힘듬 응집도 : 한 모듈 내부 안 처리 요소들 간에 관계, 응집도가 낮으면 재사용과 이해가 힘듬
git init touch 0 && git add . && git commit -m "C0" git checkout -b bugFix echo 'bugFix1' > 1 && git add . && git commit -m "C1" echo 'bugFix2' > 2 && git add . && git commit -m "C2" echo 'bugFix3' > 3 && git add . && git commit -m "C3" git log --oneline --graph --all git checkout main echo 'main1' > 1 && git add . && git commit -m "C4" echo 'main2' > 2 && git add . && git commit -m "C5" echo 'm..
git init touch 0 && git add . && git commit -m "C0" git checkout -b bugFix touch 1 && git add . && git commit -m "C1" touch 2 && git add . && git commit -m "C2" touch 3 && git add . && git commit -m "C3" git log --oneline --graph --all git checkout main touch 4 && git add . && git commit -m "C4" touch 5 && git add . && git commit -m "C5" touch 6 && git add . && git commit -m "C6" git log --oneli..
daxx0ne
'분류 전체보기' 카테고리의 글 목록 (21 Page)