实验任务6

#include <stdio.h>
#include <math.h>
int main()
{
double x, ans;
while(scanf("%lf", &x) != EOF)
{
ans = pow(x, 365);

printf("%.2f的365次方: %.2f\n", x, ans);
}
return 0;
}

 

posted @ 2023-10-02 15:04  ACAねの狗  阅读(8)  评论(0)    收藏  举报