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
- html5
- Linux
- 석문초등학교
- C언어
- hackerschool
- Web
- SuNiNaTas
- 파이썬챌린지
- 실습문제
- 암호수학
- 웹
- 리버싱
- 웹해킹
- 써니나타스
- FTZ
- ARP Redirect
- pythonchallenge
- 자바
- 대외활동
- 명품자바프로그래밍
- 파이썬
- 리눅스
- 경기대학교
- C
- setCookie
- java
- 해커스쿨
- webhacking.kr
- 피들러
- 쏙쏙캠프
Archives
- Today
- Total
목록명품자바프로그래밍 (2)
Hongfluenza
1.1234567891011121314151617181920class TV { String name; int year; int inch; public TV(String name, int year, int inch){ this.name=name; this.year=year; this.inch=inch; } void show() { System.out.println(name+"에서 만든 "+year+"년형 "+inch+"인치 TV"); }}public class _01 { public static void main(String[] args) { TV myTV = new TV("LG",2017,32); myTV.show(); }} Colored by Color Scriptercs 2. 1234567891011..
STUDY/ JAVA
2018. 4. 17. 00:58