close
#include <stdio.h>
#include <math.h>
#define amount 6
int main ( void ) {
int number[amount] = {} ; // 創造一個元素數量為六的「int」陣列
int element = 0 ; // 陣列的元素位置
// 進行輸入
for ( element = 0 ; element < amount ; element += 1 ) {
scanf ( "%d" , &number[element] ) ;
}
// 進行元素立方和的計算
int total = 0 ; // 計算陣列中所有元素的立方和
for ( element = 0 ; element < amount ; element += 1 ) {
total += (int) pow ( number[element] , 3 ) ;
}
printf ( "%d\n" , total ) ; // 顯示立方和
return 0 ;
}
文章標籤
全站熱搜
留言列表