Print Friendly and PDF

2025/04 39

[백준] 두 수 비교하기 - 1330번

깃 링크 : 바로가기링크 : 바로가기 1차 시도public class num_1330{ public static void Main() { string[] input = Console.ReadLine().Split(); int A = int.Parse(input[0]); int B = int.Parse(input[1]); if (A > B) { Console.WriteLine(">"); } else if (A 결과- 입력 " 첫째 줄에 A와 B가 주어진다. A와 B는 공백 한 칸으로 구분되어져 있다."이라 이전과 동일하게 Split 이용하여 입력 받기- if문을 사용하여 출력 예시에 맞게 출력

[Git] LFS 사용방법

LFS란?- 대용량 파일 버전 관리를 위한 오픈 소스 Git 확장 프로그램 사용처- 100MB가 넘는 파일을 Commit 및 Push할때 사용 다운로드 방법- LFS 다운로드 링크 : 바로가기 Git Large File StorageGit Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.git-lfs.com 설정- LFS를 설치할 Git Repogitory 우클릭 후..

기타/Git 2025.04.30