Wuhan University of Science and Technology Acm:1005:c Language Programming Tutorial (third Edition) after class exercise 6.6

Source: Internet
Author: User

Problem Description

To print out all the "daffodils", the so-called "Narcissus number" refers to a three-digit number, whose numbers are cubic and equal to that of itself. For example: 153 is a narcissus number, because 153=1^3+5^3+3^3. Output:

153

???

???

???

Input

No

Output

The number of daffodils, the beginning of childhood. One per line

Sample Input

Sample Output

1#include <stdio.h>2 3#include <math.h>4 5  6 7 intMain ()8 9 {Ten  One          inti; A  -           for(i= -;i< +; i++) -  the                    if(I==pow (i/ -,3) +pow (i% -/Ten,3) +pow (i%Ten,3)) -  -printf"%d\n", i); -  + GetChar (); -  +                    return 0; A  at}

Other code:

1#include <stdio.h>2 intFlowerintN)3 {4     if(n>0){5         intm=n%Ten;6         intsum=m*m*m;7         returnSum+flower (n/Ten);8     }9     return 0;Ten } One intMain () A { -     inti; -      for(i= -;i< +; i++) the         if(i==Flower (i)) -printf"%d\n", i); -}

Wuhan University of Science and Technology Acm:1005:c Language Programming Tutorial (third edition) after-class exercise 6.6

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.