Java程序查找给定数字的多维数据集

值的多维数据集只是值与自身的三倍乘积。

例如,2的立方体为(2 * 2 * 2)= 8。

算法

  • 取整数变量A。

  • 乘以三倍。

  • 将结果显示为多维数据集。

示例

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));
   }
}

输出结果

Enter a number ::
5
Cube of the given number is 125