Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++에서 숫자가 4인 1부터 n까지의 숫자 세기

<시간/>

이 튜토리얼에서는 1에서 n까지의 숫자 중 4를 숫자로 하는 숫자를 찾는 프로그램에 대해 설명합니다.

이를 위해 숫자 n이 제공됩니다. 우리의 임무는 숫자 중 하나로 4를 포함하는 모든 숫자를 세어 출력하는 것입니다.

#include<iostream>
using namespace std;
bool has4(int x);
//returning sum of digits in the given numbers
int get_4(int n){
   int result = 0;
   //calculating the sum of each digit
   for (int x=1; x<=n; x++)
      result += has4(x)? 1 : 0;
   return result;
}
//checking if 4 is present as a digit
bool has4(int x) {
   while (x != 0) {
      if (x%10 == 4)
         return true;
      x = x /10;
   }
   return false;
}
int main(){
   int n = 328;
   cout << "Count of numbers from 1 to " << n
      << " that have 4 as a digit is "
      << get_4(n) << endl;
   return 0;
}

출력

Count of numbers from 1 to 328 that have 4 as a digit is 60