mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-27 08:26:20 +00:00
5 lines
98 B
C
5 lines
98 B
C
|
int NumDigit(int number) {
|
||
|
if (number == 0) return 0;
|
||
|
return 1 + NumDigit(number / 10);
|
||
|
}
|