摘要:
#include<stdio.h> #include<math.h> int main() { float F, C; while (scanf_s("%f", &C)!= EOF) { F = 9*C/5+32; printf("摄氏度c=%.2f时,华氏度f=%.2f", C, F); prin 阅读全文
2022年10月12日
摘要:
#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 , 阅读全文