task6

`#include <stdio.h>

include <math.h>

include <stdlib.h>

int main()
{
double x, ans;

scanf("%lf", &x); 
ans = pow(x, 365);
printf("%.2f的365次方: %.2f\n", x, ans);

system("pause");
return 0;
}`

posted @ 2024-03-16 22:05  _FuBuki  阅读(2)  评论(0编辑  收藏  举报