공부하시는대에 도움이 됐으면 좋겠습니다.
답안코드 확인해주세요!
더보기
import java.util.Scanner;
public class Main {
public static void call(double input) {
double result = Math.sqrt(input / 3.14);
System.out.printf("%.2f", result);
}
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
double input = in.nextDouble();
call(input);
}
}
더 많은 자바코드가 보고 싶다면?
댓글