All public logs

From Algopedia
Jump to navigationJump to search

Combined display of all available logs of Algopedia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 10:30, 23 May 2025 Mihai talk contribs created page Clasa a 7-a Lecția 8: Recursivitate (2) (Created page with "== Înregistrare video lecție == <youtube height="720" width="1280">https://youtu.be/yPXRdAuZv6w</youtube> == Exemple de funcții recursive == Iată câteva probleme care se rezolvă ușor cu funcții recursive: === Palindrom === Verificare palindrom: <syntaxhighlight lang="c" line> #include <stdio.h> int putere( int n ) { // calculam recursiv cea mai mare int p = 1; // putere a lui 10 mai mica decit n if ( n < 10 )...")