전체 글 102

Eclipse에서 github 로그인 하는 법

일단 eclipse에서 github 연결은 했다는 가정하에 진행합니다. eclipse에서 github 연결을 하려고 하면 " can't connect to any repository .... " 이라고 뜨는 경우가 있을 겁니다... 나는 분명 github 아이디랑 비밀번호를 다 입력했는데...왜.....(╬▔皿▔)╯ 이럴 때는 github에서 뭔가를 해줘야하는데.... 이게 안되는 이유는 id/password 방식을 github에서 더이상 지원하지 않아서 생기는....(╯‵□′)╯︵┻━┻ 이 방식 대신에 git에서는 id와 token을 생성해서 연결하도록 바꿨습니다.. token 생성은 github에서

IT/관련지식 2021.09.23

백준 - 10869(사칙연산)

# 문제 https://www.acmicpc.net/problem/10869 10869번: 사칙연산 두 자연수 A와 B가 주어진다. 이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오. www.acmicpc.net # JAVA import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int A = scan.nextInt(); int B = scan.nextInt(); System.out.println(A+B); System.out.println(A-B); System.out.println(A*B..

카테고리 없음 2021.09.22