Hi. I'm new here. I'm doing a lotto program. I have this difficilty that I want to display a title before the numbers are displayed. The numbers are all displayed by the computer using randimize. Above you can see the part of program i've done. Where should i put the writeln (' This is the lotto');?
Begin
Randimize
for i := 1 to 5 do
a := random(90)+1
For i := 1 to 5 do
writeLn (a);
end.