Regards the pascal mania, this time I will mensharing how we can create a text in Turbo Pascal that runs by itself. point we make the text run in our projeck hanyala solely to beautify our program, so that not only the text visible only silence ... alone. is that right???. just follow the steps below:
- Turbo Pascal open the worksheet you all.
- Then choose File - new.
- Then type the code below:program berjalan_var;
uses crt;
var i,j:integer;
teks:string;
begin
clrscr;
teks:='NewsBlogs21.blogspot.com';
i:=30;
j:=-1;
repeat
clrscr;
if i<=1 then j:= 1;
if i>=(60-length(teks)) then j:=-1;
i:=i+j;
gotoxy(i,5);
write(teks);
delay(100);
until keypressed
end. - After completion of select menu RUN / ctrl + f9
- Congratulations you are now beautify your program by adding the text goes in it
* Greeting pascal mania and hopefully useful.
0 Response to "How to make the text run in TURBO PASCAL 7.0"
Post a Comment