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

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

时间:2017-05-09 01:00:02      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:stat   otc   ora   ext   mat   c语言   under   code   argc   

/********************************************************************
@file     Main.cpp
@date     2017-5-8
@author   Zoro_Tiger
@brief    问题 1009: C语言程序设计教程(第三版)课后习题5.7
          http://www.dotcpp.com/oj/problem1009.html
********************************************************************/
#include <cstdio>
#include <cmath>

#define TEST
#undef  TEST

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

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

    int number;
    while (scanf("%d", &number) != EOF)
    {
        //!输出位数
        int number_bit = static_cast<int>(log10(static_cast<double>(number))) + 1;
        printf("%d\n", number_bit);

        int temp_number = 0;

        //!输出正序
        temp_number = number;
        for (int i = number_bit - 1; i >= 1; --i)
        {
            int remainder = static_cast<int>(pow(10.0f, i));
            int sub_temp_number = temp_number / remainder;
            printf("%d ", sub_temp_number % 10);
        }
        printf("%d\n", temp_number % 10);

        //!输出逆序
        temp_number = number;
        for (int i = 1; i <= number_bit; ++i)
        {
            printf("%d", temp_number % 10);
            temp_number /= 10;
        }
        printf("\n");
    }

    return 0;
}

 

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

标签:stat   otc   ora   ext   mat   c语言   under   code   argc   

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

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