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 |
| 31 |
Tags
- JavaScript
- Spring
- 메서드
- Graphic
- paint
- 전화걸기
- 기본
- Android
- Java
- OGNL
- 에러페이지
- 오버로딩
- struts2
- Menu
- JSP
- AWT
- 메소드
- 이클립스
- layout
- HTML
- 국제화
- 어노테이션
- 생성자
- oracle
- 배열
- Eclips
- 클래스
- 예외처리
- 안드로이드
- mybatis
Archives
- Today
- Total
note
대소 관계를 비교하는 관계 연산자 본문
public class Opr02 {
public static void main(String[] args){
int a=10, b=4;
boolean test;
test=a>b;
System.out.println(a + ">" + b + " = " + test);
test=a
10>4 = true
10<4 = false
true
true