Question in Java ??

Question in Java ??

Welcome every One ,I have Q in Java :

Write aprogram that print the falewing table using SQRT method in the Math Class?

Number squrfoot ------- ------- 0 00000 2 1.4142 .
. . . 18 5.2426 20 5.4721

So thanks Every One .

View Answers

April 24, 2012 at 12:37 PM

import java.text.*;
class SquareRoot 
{
    public static void main(String[] args) 
    {
        DecimalFormat df=new DecimalFormat("##.####");
        System.out.println("Number  Root");
        for(int i=0;i<=20;i++){
            if(i%2==0){
            double sroot=Math.sqrt(i);
            System.out.println(i+" \t "+df.format(sroot));
            }
        }
    }
}









Related Tutorials/Questions & Answers:

Ads