일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- LSTM
- javascript
- DFS
- CNN
- Splunk
- dataframe
- RNN
- GitHub
- keras
- synology
- Lotto
- Numpy
- Python
- install
- pycharm
- GT-S80
- SciPy
- index
- SPL
- 알고리즘
- imread
- 삼성소프트웨어멤버십
- pip
- mariadb
- mean
- Button
- E-P1
- Series
- ipad
- pandas
Archives
- Today
- Total
잠토의 잠망경
실습 1 본문
import java.io.*; public class ex1 { /** * @param args * @throws IOException * @throws NumberFormatException */ public static void main(String[] args) throws NumberFormatException, IOException { // TODO Auto-generated method stub try { BufferedReader in = new BufferedReader(new InputStreamReader( System.in)); // stdin을 통해서 입력을 받는다는 얘기 int inVal = 0;// 숫자 저장문 System.out.print("정수입력:");// 입력출력문 inVal = Integer.parseInt(in.readLine()); // 문자를 숫자로 변환 System.out.println(inVal);// stdout을 통해 숫자를 출력 } catch (Exception e) { System.out.println("에러났당"); } finally { System.out.println("에헤라디야"); } } }
Comments