文章
1
粉丝
27
获赞
5
访问
594
很基础的一道
#include <stdio.h> int main(void) { double celsius; double fahrenheit; scanf("%lf", &fahrenheit); celsius = (fahrenheit - 32) * 5 / 9; printf("%.1f\n", celsius); return 0; }
登录后发布评论
暂无评论,来抢沙发