Simple C language example (code comment)

Source: Internet
Author: User
/** sum9-2-sumary how many digit from 1 to 100 ** Author: Li Ming 
  
    * creat data: * Revision 1.1 * + debug printf */# include 
   
    /** count-conut how many digit in num * @ num: the number from 1 to 100 * @ digit: digit can Bi ,..... 9 ** return value: the counter of digit in this Num */INT count (INT num, int digit) {int cunter = 0; Do {If (nub % 10 = digit) Counter ++; num/= 10;} while (num! = 0); return counter;} int main (void) {int I = 0; int sum = 0;/* The sumary of 9 */INT max = 0; /* The Max number to count */printf ("sumary 9 from 1 to 100 \ n"); scanf ("% d", & MAX ); /* sumary 9 from 0 to Max */for (I = 0; I <= max; I ++) {sum + = count (I, 9 );} printf ("sum = % d \ n", sum); Return 0 ;}
   
  

the preceding Code is used to broadcast the customer's video and embed the course of Miss Li Ming.

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.