Computer Science, asked by sheelags83, 4 months ago

write a java program that implements a cube through a class.​

Answers

Answered by Anonymous
8

Answer:

import java.util.Scanner;

public class FindingCube {

public static void main(String args[]){

int n = 5;

System.out.println("Enter a number ::");

Scanner sc = new Scanner(System.in);

int num = sc.nextInt();

System.out.println("Cube of the given number is "+(num*num*num));

}

}

Output

Enter a number ::

5

Cube of the given number is 125

Similar questions