본문 바로가기

JAVA/DAY 11 _ 23.08.31

Math.

int result = Math.addExact(5, 128);

System.out.println(result);


double A = Math.sin(654);

System.out.println(A);


double B = Math.log10(100000);
System.out.println(B);


double C = Math.fma(123, 654, 321);
System.out.println(C);


// 어떤걸 넣을지 안다면, 그 매소드가 뭔지 몰라도 어쨌든 결과는 나오겠지 ㅋㅋ....

'JAVA > DAY 11 _ 23.08.31' 카테고리의 다른 글

Setter & Getter - self study  (0) 2023.09.10
Class - self study  (0) 2023.09.10
Method  (0) 2023.09.10
Constructor  (0) 2023.09.10
Instance  (0) 2023.09.10