MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / countDigits

Function countDigits

CPP/Maths/CountDigit.cpp:4–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2using namespace std;
3
4int countDigits(int n)
5{
6 return (log10(n) + 1);
7}
8
9int main()
10{

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected