6

` #include<stdio.h>

include<math.h>

include<stdlib.h>

int main()
{
double x,ans;

while(scanf("%lf",&x)!=EOF)
{
ans=pow(x,365);
printf("%.2f的365次方:%.2f\n",x,ans);
printf("\n");
}
system("pause");
return 0;

}`

posted @ 2024-03-18 13:00  酒庄  阅读(2)  评论(0编辑  收藏  举报