摘要:
#include <stdio.h> double P(int n, double x); int main() { int n; double x; scanf("%d %lf", &n, &x); printf("%.2f\n", P(n, x)); system("pause"); retur 阅读全文
posted @ 2022-03-08 08:41
JamesGordan
阅读(119)
评论(0)
推荐(0)
摘要:
#include <stdio.h> int f(int n); int main() { int n; scanf("%d", &n); printf("%d\n", f(n)); system("pause"); return 0; } /* 你的代码将被嵌在这里 */ int f(int n) 阅读全文
posted @ 2022-03-08 08:36
JamesGordan
阅读(46)
评论(0)
推荐(0)