Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 1.26 KB | None | 0 0
  1. program LifeIsStrange_typeOShit;
  2. Uses WinCrt;
  3. Var
  4. a,b,c,d,e,f,g,h,i,j,k,l,m,n : string;
  5. esmek : string;
  6. age: Integer;
  7. Begin;
  8.  
  9. WriteLn('Hello stranger, what is your Name?');
  10. readln(esmek);
  11. writeln('Oh, that is an interesting Name ',esmek,' nice to  meet you I am arfizato.');
  12. writeln('do you want to hang out? maybe we ll get to  know each  other better..');
  13. writeln('                    YES/NO');
  14. readln(a);
  15.     if a='yes' then
  16.         Begin;
  17.         WriteLn('Oh! I didn t expect you to  say yes honestly... umm so how old are you  ?');
  18.         readln(age);
  19.             if age in[10..15] Then
  20.             WriteLn('WHOAH! you look older than you actually are , even your voice sounds deeper than the usual ',age,' year olds')
  21.             Else
  22.             if age in[16..18] then
  23.             WriteLn('comparing to boys your age you look pretty handsom.')
  24.             Else
  25.             if age>18 Then
  26.             writeln('i am too ',age,' what a coincidence!!');
  27.         WriteLn('So are you into gaming or not ?') ;
  28.         WriteLn('         YES/NO');
  29.         readln(c);
  30.             If c='yes' Then
  31.             WriteLn('Thats pretty awesome I am too')
  32.             Else
  33.             If c = 'no' Then
  34.                 Begin;
  35.             WriteLn('What do like then ?');
  36.             readln(d);
  37.             WriteLn('Yeah, whatever...');
  38.                 End
  39.         End
  40.     Else
  41.     WriteLn('whatever go suck on a pillow or something');
  42. End.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement