package com.sogangori;
public class MyClass1 {
public static void main(String[] args) {
String name="com.sogangori 패키지 안의 MyClass1";
}
}
import com.sogangori.*;//import 수입
public class StaticExample {
public static void main(String[] args) {
double d = - 3.4 ;
// static Method 사용 예
System.out.println( d+ "의 절대값은 : "+ Math.abs(d));
// static Field 사용 예
System.out.println("원주율 :" + Math.PI);
int r=5;
double area;
area= r*r*Math.PI;
System.out.println(" 면적은 "+area);
System.out.printf("%d의 면적은 %f \n",r,area);
for(int i=0 ; i<3 ; i++){
System.out.println("*****");
}
for(int i=1 ; i<=5 ; i++){
for(int j=0 ; j<i ; j++){
System.out.print("*");
}
System.out.println("");
}
/* #####
* ####
* ###
* ##
* #
* */
// 5 / 4 / 3 / 2 /1 : 5 - i
// i=0 1 2 3 4
for( int i= 0 ; i<5 ; i++){
for(int j=0 ; j< 5-i ; j++){
System.out.print("#");
}
System.out.println("");
}
//new MyClass1();패키지가 나와 다르다.
Class1 class1 =new Class1();//패키지가 나와 같다.
com.sogangori.Class1 otherClass1 = new com.sogangori.Class1();
new com.sogangori.MyClass1();
new MyClass1();
//한국 : 다른 패키지는 외국
//
String name="쩡이";
java.lang.String name2="똘이";//원칙적으로 이것이 맞다
}
}