일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Series
- GT-S80
- pandas
- keras
- Numpy
- mean
- javascript
- DFS
- Button
- ipad
- SciPy
- imread
- dataframe
- Python
- Splunk
- 삼성소프트웨어멤버십
- SPL
- Lotto
- index
- mariadb
- E-P1
- CNN
- pip
- 알고리즘
- GitHub
- pycharm
- LSTM
- install
- synology
- RNN
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