|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| ||||||||||||||||||||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Please help on Pascal
Triangle of letters
Write a program that asks for a start and stop letter and then produces the following: for start value a and stop value e: a ab abc abcd abcde |
|
#2
|
|||
|
|||
|
Rather simple in Pascal
.Code:
program test;
var
I : char;
begin
for I := 'a' to 'z' do
begin
WriteLn(I);
end;
end.
|
|
#3
|
|||
|
|||
|
Quote:
Thank you for your help. |
![]() |
| Viewing: Dev Articles Community Forums > Programming > General Programming Help > Please help on Pascal |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|