///////
Search
🥧

황준하

Git Hub

새로운 Repository 만들기

echo "# gh" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/lay423/gh.gitgit push -u origin main
Plain Text
복사

Vim

vim hello-git-mac
i(인서트) 누르고 hello 입력
esc 로 인서트모드 탈출하고
:wq 로 저장후 나가기
hello를 hello.txt파일 생성해서 한줄 추가 하기
echo hello > hello.txt
hello.txt의 내용 확인 하기
cat hello.txt

Source Tree

Git을 보다 편리하게 사용할 수 있도록 만들어진 Git GUI

Intellij 단축키

pvsm : public static void main(String[] args)
alt + 1 : 프로젝트 익스플로러 열고 닫기
alt + j : 같은 단어 여러개 선택

알고리즘

Array 1~10 출력

풀이

화폐 단위 환산

풀이

화폐 단위 환산2

풀이

홀수 짝수

풀이

홀수 짝수 더하기

풀이
import java.util.Scanner;