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

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

时间:2017-05-29 13:37:00      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:stdout   char   语言   std   algorithm   define   otc   const   span   

/********************************************************************
@file     Main.cpp
@date     2017-05-29 12:55:07
@author   Zoro_Tiger
@brief    问题 1043: C语言程序设计教程(第三版)课后习题10.1
          http://www.dotcpp.com/oj/problem1043.html
********************************************************************/
#include <cstdio>
#include <algorithm>
#include <vector>

#define TEST
#undef  TEST
#define VEC_SIZE 3

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

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

    //!输入
    std::vector<int> vec(VEC_SIZE);
    for (int i = 0; i < VEC_SIZE; ++i)
    {
        scanf("%d", &vec[i]);
    }

    //!排序
    std::sort(vec.begin(), vec.end());

    //!输出
    for (int i = 0; i < VEC_SIZE; ++i)
    {
        printf("%d ", vec[i]);
    }

    return 0;
}

 

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

标签:stdout   char   语言   std   algorithm   define   otc   const   span   

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

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