View Code of Problem 74

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int x = sc.nextInt();
        System.out.printf("%.3f", Math.sqrt(x));
    }
}

Double click to view unformatted code.


Back to problem 74