#include <stdio.h> #include <stdlib.h> #include <math.h> int main() { double x, ans; scanf("%lf", &x); ans= pow(x, 365); printf("%.2f的365次方: %.2f\n", x, ans); return 0;
posted on 2022-03-22 18:12 孙羽彤 阅读(6) 评论(0) 编辑 收藏 举报
博客园 Copyright © 2024 孙羽彤 Powered by .NET 9.0 on Kubernetes