Thursday, December 4, 2014



#coding exercise
Decimal getMin (decimal  [] a)
{
If (a == NULL) return 0;
Return a.Min ();
}


#coding exercise
Decimal getMax (decimal [] a)
{
If (a == NULL) return 0;
Return a.Max();
}

No comments:

Post a Comment