摘要: #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, 阅读全文
posted @ 2023-09-30 14:09 十二门 阅读(6) 评论(0) 推荐(0) 编辑