Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 1.82 KB | None | 0 0
  1. program pierdolonegorole;
  2. uses crt;
  3. var
  4. imie,odp:string;
  5. win:integer;
  6. powrot:char;
  7.  
  8. label start,gorolsiejebnyl,pytani1,main,exit,zaglupi;
  9.  
  10. begin
  11. textbackground(black);
  12. clrscr;
  13. main:
  14. window(15,10,60,40);
  15. textbackground(red);
  16. textcolor(white);
  17. clrscr;
  18. writeln('        WITEJ W PROGRAMIE "GOROLKILLER"');
  19. writeln('Przedstaw sie prosze.');
  20. readln(imie);
  21. writeln('Witej ',imie);
  22. if length(imie)=0 then goto gorolsiejebnyl else goto pytani1;
  23.  
  24.  
  25. gorolsiejebnyl:
  26.                clrscr;
  27.                writeln('PIERDOLONY GOROLU NAWET SIE PRZEDSTAWIC NIEUMISZ!!');
  28.                writeln('Wybier se opcja:');
  29.                writeln('1=Jestem glupim gorolem i nieumiem obslugiwac kompa wiec wylacz to gowno.');
  30.                writeln('2=A dostane 2 szanse??');
  31.                readln(powrot);
  32.                if powrot='1' then goto exit;
  33.                if powrot='2' then goto main else goto zaglupi;
  34.  
  35.  
  36. pytani1:
  37. writeln('                 GRATULACJE   ',imie);
  38. writeln('Je zes bardzo mondrym gorolem skoro zes tak daleko zaszol!!');
  39. textbackground(blue);
  40. clrscr;
  41. writeln('Pytani 1:');
  42. writeln('Co to je "szolka"');
  43. writeln('a=but|b=cukierek|c=szklanka');
  44. readln(odp);
  45. if odp='a' then
  46. begin
  47. writeln('lojezu glupota goroli mie przerasto szolka to je c=szklanka');
  48. goto zaglupi;
  49. end;
  50. if odp='b' then
  51. begin
  52. writeln('ja cukierka bys chciol? gorole ino gnoj zerom!!');
  53. goto zaglupi;
  54. end;
  55. if odp='c' then
  56. begin
  57. repeat
  58. textbackground(random(16));
  59. clrscr;
  60. writeln('             GRATULACJE!!');
  61. delay(90);
  62. win:=win+1
  63. until win=16;
  64. textbackground(red);
  65. clrscr;
  66. writeln('To zes mie zaskoczyl!!');
  67. readln;
  68. goto exit;
  69. end;
  70.  
  71.  
  72. exit:
  73. clrscr;
  74. writeln('Spierdalej gorolu!!');
  75. readln;
  76. halt;
  77. zaglupi:
  78. writeln('Tys je za glupi nawet na prosty program w pascalu');
  79. writeln('Tryb IDOTOODPORNY AKTYWNY');
  80. readln;
  81. halt;
  82.  
  83. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement