Skip to content

Instantly share code, notes, and snippets.

@leafnode
Created December 9, 2008 13:25
Show Gist options
  • Save leafnode/33896 to your computer and use it in GitHub Desktop.
Save leafnode/33896 to your computer and use it in GitHub Desktop.
int wyswietl_menu( )
{
int ch;
cout << "\n 1. Wyszukiwanie ksiazek" << endl;
cout << " 2. Edycja danych" << endl;
cout << " 3. Dopisywanie danych" << endl;
cout << " 4. Wypożyczanie książek" << endl;
cout << " 5. Zwrot książek" << endl;
cout << " 6. Koniec\n\n";
cout << "Wybierz polecenie: \n? ";
cin >> setw(1) >> ch;
return ch;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment