7-1 Java-cube a number
分数 10
全屏浏览
切换布局
作者 马新娟
单位 山东理工大学
Write a program that will display the result of cubing a number. Declare a variable of integer type representing the number to be cubed and assign it a value 2. Display the result using console window.
输入格式:
输出格式:
Display the result using console window.
输入样例:
输出样例:
2 cubed is:8
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
栈限制
8192 KB
public class Main { public static void main(String [] args) { int n=2; System.out.println(+n+" cubed is:"+(n*n*n)); } }