Created
April 1, 2025 11:53
-
-
Save mumura/badfec8e089729a45e0881b0e3e9b4bc to your computer and use it in GitHub Desktop.
JavaStudy_02.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class JavaStudy_02 { | |
public static void main(String[] args) { | |
/* | |
강진슬 | |
*/ | |
// 최대/최솟값을 확인하는 예제 | |
System.out.println("Integer.MAX_VALUE : " + Integer.MAX_VALUE); | |
System.out.println("Integer.MIN_VALUE : " + Integer.MIN_VALUE); | |
System.out.println("Double.MAX_VALUE : " + Double.MAX_VALUE); | |
System.out.println("Double.MIN_VALUE : " + Double.MIN_VALUE); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment