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

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

时间:2017-05-26 10:55:13      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:c语言   line   ring   end   程序设计   ati   return   argc   main   

/********************************************************************
@file     Main.cpp
@date     2017-5-26 09:36:10
@author   Zoro_Tiger
@brief    问题 1031: C语言程序设计教程(第三版)课后习题8.5
          http://www.dotcpp.com/oj/problem1031.html
********************************************************************/
#include <cstdio>
#include <cmath>
#include <string>
#include <iostream>

#define TEST
#undef  TEST

int main(int argc, const char* argv[])
{

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

    std::string input = "";
    while (std::cin >> input) //!输入
    {
        //!转置、不让用
        //std::reverse(input.begin(), input.end());

        //!输出
        for (int i = input.size() - 1; i >= 0; --i)
        {
            printf("%c", input[i]);
        }
        printf("\n");
    }

    return 0;
}

 

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

标签:c语言   line   ring   end   程序设计   ati   return   argc   main   

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

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