Skip to content

Instantly share code, notes, and snippets.

@KowalczykBartek
Created December 7, 2014 19:45
Show Gist options
  • Save KowalczykBartek/727cc5410eed395b5494 to your computer and use it in GitHub Desktop.
Save KowalczykBartek/727cc5410eed395b5494 to your computer and use it in GitHub Desktop.
trololo
program project1;
uses interfejs, obliczenia, pliki;
var
menuprogramu:integer;
begin
writeln('Podaj wartosc z Menu: '+#10#13+'1.szyfrowanie'+#10#13+'2.deszyfrowanie');
readln(menuprogramu);
repeat
case menuprogramu of
1: szyfrowanie;
2: deszyfrowanie;
end
until menuprogramu=3 ;
readln;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment