#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; }
标签:%.,2f,任务,实验,365,ans,include From: https://www.cnblogs.com/yukinoshita-/p/17739943.html