Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 네트워크 설정
- 자료구조와함께배우는알고리즘입문
- GIT
- Kernighan의 C언어 프로그래밍
- resttemplate
- 알파회계
- 스프링 시큐리티
- 선형대수
- 데비안
- 페이징
- 코드로배우는스프링부트웹프로젝트
- /etc/network/interfaces
- 처음 만나는 AI수학 with Python
- 구멍가게코딩단
- baeldung
- 이터레이터
- iterator
- 코드로배우는스프링웹프로젝트
- ㅒ
- d
- 처음 만나는 AI 수학 with Python
- 티스토리 쿠키 삭제
- 서버설정
- 스프링부트핵심가이드
- network configuration
- 친절한SQL튜닝
- 자바편
- 리눅스
- 목록처리
- 자료구조와 함께 배우는 알고리즘 입문
Archives
- Today
- Total
목록자료구조와 함께 배우는 알고리즘 입문 (1)
bright jazz music

실습 1-1 세 값의 최대값 구하기 package org.example; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner stdIn = new Scanner(System.in); // System.in은 키보드와 연결된 '표준 입력 스트림(standard input stream)'이다. System.out.println("세 정수의 최댓값을 구한다."); System.out.print("a의 값: "); int a = stdIn.nextInt(); //이 메서드가 실행되면 키보드로 입력한 '정수'값을 얻을 수 있다. //int형의 범위는 -2,147,483,648 ~ 2,147,483..
Algorithm&Data structure/Java text book
2022. 9. 2. 08:22