Skip to content

Instantly share code, notes, and snippets.

@mumura
Created April 1, 2025 11:53
Show Gist options
  • Save mumura/badfec8e089729a45e0881b0e3e9b4bc to your computer and use it in GitHub Desktop.
Save mumura/badfec8e089729a45e0881b0e3e9b4bc to your computer and use it in GitHub Desktop.
JavaStudy_02.java
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