Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- program Main;
- uses crt;
- var liczba : integer; {Zmienna liczba}
- begin
- writeln('Podaj liczbe: '); {podanie liczby}
- readln(liczba);
- if (liczba < 60) and (liczba > 50) Then {Warunek czy liczba miesci sie w zakresie 50-60}
- begin {wypisuje jesli tak}
- writeln('podana liczba miesci sie w zakresie: ',liczba);
- readln();
- end
- else
- begin {wypisuje jesli nie}
- writeln('liczba sie nie miesci w zakresie: ',liczba);
- readln();
- end;
- end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement