Odpowiedz na pytania :
1.jak wczytuje sie dane liczby do porgramu oraz jak sie je wpisuje w pascalu?
2.wymień znane instrukcje warunkowe (2) oraz przykłady takich instrukcji.
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
1.Funkcje biblioteki standardowej Read/Readln oraz Write/Writeln
2.if/case
if (x) then
foo() else
&else();
case x of
0..1: foo()
else &else();
end;