当前位置: 代码迷 >> 综合 >> 【1005】摄氏度转换 (C语言程序设计教程(第三版)课后习题4.9)
  详细解决方案

【1005】摄氏度转换 (C语言程序设计教程(第三版)课后习题4.9)

热度:64   发布时间:2023-12-06 09:57:27.0
#include <stdio.h>
int main()
{double h,c;scanf("%lf",&h);c=5*(h-32)/9;printf("c=%.2lf",c);return 0;
}

  相关解决方案