Programu zadáte dve čísla (a,b) a on vypíše všetky celé čísla od a po b
Delphi & Pascal (česká wiki)
Kategorija: Zadaňa zos Pascalu
Program: C_cisla.pas
Subor exe: C_cisla.exe
Subor ubuntu: C_cisla
Program: C_cisla.pas
Subor exe: C_cisla.exe
Subor ubuntu: C_cisla
Programu zadáte dve čísla (a,b) a on vypíše všetky celé čísla od a po b.
{ C_CISLA.PAS Copyright (c) TrSek alias Zdeno Sekerak } { Vytvorte program ktory nacita dve cele cisla (a,b) } { a vypise vsetky cele cisla od a po b (Pozor!!! a<b alebo a>b). } { } { Datum:23.05.2004 http://www.trsek.com } program cele_cisla; var a,b:integer; i:integer; begin WriteLn('Vypisem vsetky cele cisla od a po b.'); Write('Zadaj cele cislo a='); ReadLn(a); Write('Zadaj cele cislo b='); ReadLn(b); WriteLn('Poradie celych cisel je:'); if(a<b)then begin for i:=a to b do WriteLn(i); end else begin for i:=a downto b do WriteLn(i); end; WriteLn('Koniec'); ReadLn; end.