Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. package day4HomeWork;
  2.  
  3. public class EdnoChisloOtKonzolata {
  4.     public static void main(String[] args) {
  5.         double sqrt = Math.sqrt(3.2453768);
  6.         String s = String.format("%.5f", sqrt);
  7.         System.out.println(s);
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement