Loop structure-Determines whether a number is an absolute number (C language)

Source: Internet
Author: User

With http://www.cnblogs.com/MichaelLee2015/p/4402993.html

#include <stdio.h>intMain () {intNum//indicates the number of inputsprintf ("Please enter a positive integer that will determine if this number is a full number \ n");//Prompt for user inputscanf"%d", &num);//gets the number of inputs    intsum =0;//representing the last of all factors and//idea: Find out all the factors of this number num and add the sum to see if it equals this number     for(inti =1; i < num; i++)    {        if(num% i = =0)//The remainder is 0, which is divisible, that is, the factor i is num{sum+ = i;//can also write sum=sum+i;        }    }    if(Sum = =num) {printf ("%d is a complete number \ n", num); }    Else{printf ("%d is not a complete number \ n", num); }    return 0;}

Loop structure-Determines whether a number is an absolute number (C language)

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.