LIST 🗂️

소스 코드 package org.example; import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[] numbers = new int[20]; Arrays.fill(numbers, -1); int numbersLastIndex = -1; while (true) { System.out.printf("숫자를 입력해주세요(-1 : 종료) : "); int num = sc.nextInt(); if (num == -1) { System.out.println("입력을 종료합니다."); break..
https://www.acmicpc.net/step/1 입출력과 사칙연산 단계 입출력과 사칙연산 www.acmicpc.net 1000 A+B 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(); System.out.println(A+B); in.close(); } } 1001 A-B import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = n..
https://www.acmicpc.net/problem/2557 2557번: Hello World Hello World!를 출력하시오. www.acmicpc.net public class Main { public static void main(String[] args) { System.out.println("Hello World!"); } }
1. git init 2. touch 0 && git add . && git commit -m "c0" 3. git checkout -b bugFix 4. echo '안녕' > 1 && git add . && git commit -m "c1" 1 파일의 내용을 '안녕' 으로 설정 후 커밋 5. log --oneline --graph --all 6. git log --oneline --graph --all 7. git checkout main 8. echo '잘가' > 1 && git add . && git commit -m "c2" 1 파일의 내용을 '잘가' 로 설정 후 커밋 9. git merge bugFix 충돌 발생, 자동 병합이 실패했다는 뜻 (즉, 개발자가 직접 병합해야 한다는 뜻) 10. ec..
실행 순서 파일 생성하기 git init touch 0 && git add . && git commit -m "c0" touch 1 && git add . && git commit -m "c1" git branch bugFix git checkout bugFix touch 2 && git add . && git commit -m "c2" git checkout main touch 3 && git add . && git commit -m "c3" touch 4 && git add . && git commit -m "c4" git merge bugFix 결과 (확인은 git log --oneline --graph --all 명령어로!)
https://school.programmers.co.kr/learn/courses/30/lessons/120821 class Solution { public int[] solution(int[] num_list) { //num_list의 길이만큼 answer 배열의 크기를 지정 int[] answer = new int[num_list.length]; for(int i = 0; i < num_list.length; i++){ //0부터 num_list의 길이만큼 반복 answer[i] = num_list[num_list.length - i -1]; return answer; //answer을 리턴하면 num_list 배열이 뒤집어져서 나옴! } }
https://school.programmers.co.kr/learn/courses/30/lessons/120814 class Solution { public int solution(int n) { int answer = 0; if(n % 7 != 0){ //n을 7로 나눈 나머지가 0이 아니라면 answer += n / 7 + 1; //n을 7로 나눈 몫에 1을 더해서 return } else{ answer = n / 7; //n이 7로 나누어 떨어지면 그 몫을 return } return answer; } } → 만약 8명이면 최소 2판이 필요하기 때문에 7로 나눈 후 나머지가 있을 경우 +1을 해줘야 하고, 7로 나누어 떨어지는 경우 7명 당 1판씩 먹으면 되기 때문에 몫만 리턴해주면 된다!
daxx0ne
'분류 전체보기' 카테고리의 글 목록 (25 Page)