First Upload
This commit is contained in:
30
21 - recorstion/ex1.c
Normal file
30
21 - recorstion/ex1.c
Normal file
@@ -0,0 +1,30 @@
|
||||
#include "General.h"
|
||||
|
||||
//---------------------------------------------------------------------------------------
|
||||
// MaxDigit
|
||||
// --------
|
||||
//
|
||||
// General : Check the max digit in the number.
|
||||
//
|
||||
// Parameters :
|
||||
// num - number (int)
|
||||
//
|
||||
// Return value : The max digit in the number (unsigned short).
|
||||
//
|
||||
//---------------------------------------------------------------------------------------
|
||||
// Programmer : Cohen Idan
|
||||
// Student No : 211675038
|
||||
// Date : 30.12.2019
|
||||
//---------------------------------------------------------------------------------------
|
||||
unsigned short MaxDigit(int num)
|
||||
{
|
||||
if (num < TEN)
|
||||
return (num);
|
||||
else
|
||||
return (MAX(MaxDigit(num / TEN), num % TEN));
|
||||
}
|
||||
|
||||
void main(void)
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user