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

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

时间:2017-05-11 10:20:16      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:otc   .cpp   nbsp   htm   math   turn   logs   include   指定   

/********************************************************************
@file     Main.cpp
@date     2017-5-11
@author   Zoro_Tiger
@brief    问题 1016: C语言程序设计教程(第三版)课后习题6.6
          http://www.dotcpp.com/oj/problem1016.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

    //!指定为三位数,一开始没看清
    for (int i = 100; i <= 999; ++i)
    {
        int temp = i, sum = 0;
        for (int j = 0; j < 3; ++j)
        {
            int local_temp = temp % 10;
            sum += local_temp * local_temp * local_temp;
            temp /= 10;
        }
        
        if (sum == i)
        {
            printf("%d\n", i);
        }
    }

    return 0;
}

 

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

标签:otc   .cpp   nbsp   htm   math   turn   logs   include   指定   

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

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