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 |
Tags
- property
- html
- function
- list
- springframework
- array
- 상속
- Java
- Event
- GUI
- Method
- javaservlet
- 코틀린#클래스#상속
- spring
- 연락처 프로그램
- 연산자
- css
- File 클래스
- String
- kotlin #return #jump
- 자바
- jsp
- 윈도우 #단축키
- 다형성
- 파일 입출력
- 오라클
- JavaScript
- jQuery
- 설치
- 데이터베이스
Archives
- Today
- Total
목록조건문 (1)
Binary World
JAVA CLASS : 조건문(if)
*IfMain01 public class IfMain01 {public static void main(String[] args){System.out.println("if-else 문");int x = 100;if (x > 0){System.out.println("양수");} else {System.out.println("0보다 크지 않음");}System.out.println("첫번째 if-else 끝");System.out.println("==================");int y = 100;if(y > 0){System.out.println("양수입니다!");} else {System.out.println("0보다 크지 않습니다.");}} // end main()} // end class IfM..
개발자의 길/JAVA
2016. 12. 29. 11:30