0796 - Eliminare 3: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

19 April 2023

  • curprev 14:2914:29, 19 April 2023MiclausIoana talk contribs 4,520 bytes +1,152 No edit summary undo
  • curprev 14:0014:00, 19 April 2023MiclausIoana talk contribs 3,368 bytes +3,368 Pagină nouă: == Rezolvare == def citire_matrice(): try: n = int(input("Introduceti numarul de linii: ")) m = int(input("Introduceti numarul de coloane: ")) if 3 <= n <= 50 and 3 <= m <= 50: print("Datele sunt corecte.") else: print("Datele nu sunt conform restrictiilor impuse.") exit() except ValueError: print("Trebuie introduse doar numere intregi.") exit() matrice = [] for linie in range...