摘要: #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<math.h> int main() { double c, f; while (scanf("%lf", &c) != EOF) { f = 9 * c / 5 + 32; pri 阅读全文
posted @ 2022-10-13 22:24 王昌煦 阅读(63) 评论(0) 推荐(0) 编辑