Find the number of numbers 1 to n in decimal notation.

Source: Internet
Author: User

Meaning: for example, if the number of 1 to 10 contains 1 and 10, the total number of 1 is 2.

 

Use the following method:

First, a problem is solved: given a number, the number of 1 is obtained.

Public int getnum (int n) {int COUNT = 0; while (n! = 0) {If (N % 10 = 1) {count ++;} n = N/10;} return count ;}

Then, use a loop to find the number of all 1 in all numbers 1 to n.

 

Public int getonenumton (int n) {int Total = 0; For (INT I = 1; I <= N; I ++) {total + = This. getnum (I);} return total ;}

 

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.