Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Data Type Exercises: Reads a number and display the square, cube, and fourth power

Java Data Type: Exercise-8 with Solution

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

Test Data
Input the side length value: 15

Sample Solution:

Java Code:

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  

Flowchart:

Flowchart: Java Data Type Exercises - Reads a number and display the square, cube, and fourth power

JavaCode Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to display the speed, in meters per second, kilometers per hour and miles per hour.
Next: Write a Java program that accepts two integers and then prints the sum, the difference, the product, the average, the distance (the difference between integer), the maximum (the larger of the two integers), the minimum (smaller of the two integers).

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe