Temat:
InformatykaAutor:
jamesoncrossUtworzono:
1 rok temuOdpowiedź:
nie wiem co to jest n w tej funkcji ale zgaduję, że jest to rozmiar tablicy T1
public static bool CzyJest(int[] T1, int a, int n=0)
{
n--;
if(n < 0)
return false;
else if(T1[n] == a)
return true;
else
return CzyJest(T1,a,n);
}
Wyjaśnienie:
Autor:
oliveiaua
Oceń odpowiedź:
2