摘要:
#pragma warning(disable:4996) #include<stdio.h> int main() { double x, y; char c1, c2, c3; int a1, a2, a3; scanf("%d%d%d", &a1, &a2, &a3); printf("%d, 阅读全文
2022年10月18日
2022年10月12日
摘要:
#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 阅读全文
摘要:
#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 , 阅读全文