task6_2

`#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);

}
system("pause");

return 0 ;

}`

posted @ 2024-03-16 22:06  _FuBuki  阅读(7)  评论(0)    收藏  举报