码迷,mamicode.com
首页 > 编程语言 > 详细

问题 1005: C语言程序设计教程(第三版)课后习题4.9

时间:2017-05-07 21:59:55      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:span   int   习题   第三版   教程   ifd   头文件   txt   .com   

/********************************************************************
@file     Main.cpp
@date     2017-05-07
@author   Zoro_Tiger
@brief    问题 1005: C语言程序设计教程(第三版)课后习题4.9
          http://www.dotcpp.com/oj/problem1005.html
********************************************************************/
//!头文件
#include <cstdio>

//!宏定义
#define TEST
#undef  TEST

//!程序入口
int main(int argc, const char* argv[])
{

#ifdef TEST
    freopen("in.txt", "r", stdin);
    freopen("out.txt", "w", stdout);
#endif

    float fIn = 0.0f;
    while (scanf("%f", &fIn) != EOF)
    {
        float fOut = 5 * (fIn - 32) / 9;
        printf("c=%.2f\n", fOut);
    }

    return 0;
}

 

问题 1005: C语言程序设计教程(第三版)课后习题4.9

标签:span   int   习题   第三版   教程   ifd   头文件   txt   .com   

原文地址:http://www.cnblogs.com/roronoa-zoro-zrh/p/6822336.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!