Ŀ

գҪıйص䡣
һnһ3ĳ˷3^0 ~ 3^nֵɵݺ3ĳ˷
ʹ printf("pow(3,%d) = %.0f\n", i, mypow);
ʾ˵

3	(n=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(void)
{
    int i, n;
    double mypow;

    scanf("%d", &n);
/*---------*/
}
