10 2022 档案

摘要:#include<stdio.h> #include<stdlib.h> #include<time.h> int main() { char a; while(scanf_s("%c",&a) != EOF) { switch (a) { case'r':printf("STOP!\n"); br 阅读全文
posted @ 2022-10-20 01:05 王昌煦 阅读(33) 评论(0) 推荐(0)
摘要:#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 王昌煦 阅读(73) 评论(0) 推荐(0)