๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
  • What would life be If we had no courage to attemp anything?
Language/Java

[์ƒํ™œ์ฝ”๋”ฉ] Java - ์ œ์–ด๋ฌธ (๋น„๊ต์—ฐ์‚ฐ์ž)

by DevIseo 2022. 4. 25.
 
 
public class ComparisonOperatorApp {

	public static void main(String[] args) {
		System.out.println(1>1); //false
		System.out.println(1==1);//true
		System.out.println(1<1);//false
		System.out.println(1>=1);//true

	}

}

๋Œ“๊ธ€