輸入一個非負整數(shù)n敲长,生成一張3的乘方表郎嫁,輸出~的值∑碓耄可調(diào)用冪函數(shù)計算3的乘方泽铛。
輸入格式:
輸入在一行中給出一個非負整數(shù)n。
輸出格式:
按照冪的遞增順序輸出n+1行辑鲤,每行格式為“pow(3,i) = 3的i次冪的值”盔腔。題目保證輸出數(shù)據(jù)不超過長整型整數(shù)的范圍。
輸入樣例:
3
輸出樣例:
pow(3,0) = 1
pow(3,1) = 3
pow(3,2) = 9
pow(3,3) = 27
代碼:
#include <stdio.h>
#include <math.h>
int main()
{
int n;
scanf("%d", &n);
for (int i = 0; i <= n; i++)
{
printf("pow(3,%d) = %d\n", i, (int)pow(3, i));
}
return 0;
}