Advertisement
udsigry

Pokaz_zakres_pascal

Feb 16th, 2012
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.56 KB | None | 0 0
  1. program Main;
  2.  
  3. uses crt;
  4.  
  5. var liczba : integer;       {Zmienna liczba}
  6.  
  7. begin
  8.      writeln('Podaj liczbe: ');         {podanie liczby}
  9.      readln(liczba);
  10.      if (liczba < 60) and (liczba > 50) Then        {Warunek czy liczba miesci sie w zakresie 50-60}
  11.         begin                                       {wypisuje jesli tak}
  12.              writeln('podana liczba miesci sie w zakresie: ',liczba);
  13.              readln();
  14.         end
  15.         else
  16.         begin                                       {wypisuje jesli nie}
  17.              writeln('liczba sie nie miesci w zakresie: ',liczba);
  18.              readln();
  19.         end;
  20.  
  21.  
  22. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement