The basics of programming in c++ for beginners

A task: counting numbers

We introduce an integer. Count the number of times the software in its decimal notation includes some figures, let us say 3. That's all the condition. For example: 123 -> 1; 54321345 -> 2; 3333 -> 4 etc.

The task is very simple … at the high school level. But in order, to do the task is not quite so trivial – complicate:
– offer several (as much as possible) different ways to implement;
– for each realization reduce code writing so, that it, more concise as possible.

Solutions (It is where to turn because of the simplicity of the task, solutions can be very, Fill your):

It all fits into the solution one operator do … while. But, pay attention to, what “injected integer” – This input is always a string, representing a number (Here the trick in the formulation of the problem). Then:

Or so:

Or even so:

And that's how it looks:

P.S. This problem is a good illustration of the fundamental programming principles, what any the problem can be solved many and very various ways.

One thought on “A task: counting numbers

  1. I decided to like this

Leave a Reply

Your email address will not be published. Required fields are marked *