ex)

import static java.lang.System.out;
import static java.lang.Math.*;

public class StaticImportTest {
 
 public static void main(String[] args) {
  out.println("sqrt " + sqrt(2.0));
  out.println("tan " + tan(60));
 }

}


---------------------

result
sqrt 1.4142135623730951
tan 0.320040389379563

-----------------

이거 이런식으로 그냥 막써도 괜찮나요? 특별히 오류나거나 할거는 없어보이는데....