Write a Java program that reads a number and display the square, cube, and fourth power

  • برمجة جافا
  • برمجة

Write a Java program that reads a number and display the square, cube, and fourth power

Expected Output:
Square: .2f
Cube: .2f
Fourth power: 50625.00

الأجوبة

import java.util.Scanner;
public class Exercise8 {

    public static void main(String[] args)
    {
        Scanner in = new Scanner(System.in);
        System.out.print("Input the side length value: ");
        double val = in.nextDouble();

        System.out.printf("Square: %12.2f\n", val * val);
        System.out.printf("Cube: %14.2f\n", val * val * val);
        System.out.printf("Fourth power: %6.2f\n", Math.pow(val, 4));
    }
}

Sample Output:

Input the side length value: 15                                                                               
Square: .2f                                                                                                   
Cube: .2f                                                                                                     
Fourth power: 50625.00  
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...