Write a Java program that reads a number and display the square, cube, and fourth power
- برمجة جافا
- برمجة
- 2021-05-01
- razanmazen8711884270
الأجوبة
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
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال