Skip to content

Instantly share code, notes, and snippets.

@gydoma
Created October 5, 2022 07:17
Show Gist options
  • Save gydoma/fc712202db18ca788a217f46f97caefa to your computer and use it in GitHub Desktop.
Save gydoma/fc712202db18ca788a217f46f97caefa to your computer and use it in GitHub Desktop.
Minimum_kiválasztás(X[N], min)
min=1;
Ciklus i=2-től N-ig
Ha X[i]<X[min], akkor
min=i;
Elágazás vége;
Ciklus vége;
Eljárás vége;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment