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

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

时间:2017-05-20 23:34:51      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:set   scanf   div   ems   习题   class   scan   span   style   

/********************************************************************
@file     Main.cpp
@date     2017-05-20 22:05:39
@author   Zoro_Tiger
@brief    问题 1023: C语言程序设计教程(第三版)课后习题7.2
          http://www.dotcpp.com/oj/problem1023.html
********************************************************************/
#include <cstdio>
#include <cstring>

#define TEST
#undef  TEST
#define ARRAY_NUM 10

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

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

    //!读取输入
    int array[ARRAY_NUM];
    memset(array, 0, sizeof(array));
    for (int i = 0; i < ARRAY_NUM; ++i)
    {
        scanf("%d", &array[i]);
    }

    //!排序
    for (int i = 0; i < ARRAY_NUM - 1; ++i)
    {
        int k = i;
        for (int j = i + 1; j < ARRAY_NUM; ++j)
        {
            if (array[j] < array[k])
            {
                k = j;
            }
        }

        if (k != i)
        {
            array[i] = array[i] + array[k];
            array[k] = array[i] - array[k];
            array[i] = array[i] - array[k];
        }
    }

    //!输出结果
    for (int i = 0; i < ARRAY_NUM; ++i)
    {
        printf("%d\n", array[i]);
    }

    return 0;
}

 

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

标签:set   scanf   div   ems   习题   class   scan   span   style   

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

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