Cube
优质
小牛编辑
125浏览
2023-12-01
值的立方体只是值与自身相乘的三倍。
For example, 2的立方体是(2 * 2 * 2)= 8。
算法 (Algorithm)
该程序的算法简单易行 -
START
Step 1 → Take integer variable A
Step 2 → Multiply A three times
Step 3 → Display result as Cube
STOP
伪代码 (Pseudocode)
伪代码可以派生为 -
procedure cube( n )
cube = n * n * n
DISPPLAY cube
end procedure
实现 (Implementation)
该算法的实现如下 -
#include <stdio.h>
int main() {
int n = 5;
printf("Cube of %d = %d", n, (n*n*n));
return 0;
}
输出 (Output)
该方案的产出应该是 -
Cube of 5 = 125