Posted: Tue Mar 25, 2003 12:23 am Post subject: (No subject)
it would help soo much if people actually used helpful titles for their new posts rether then !!!!HELP ME NOW!!!!!!!!!!!! since in case like that, not only do we NOT know what its about... even if we do answer the questions, others looking will probably just skip it and ask same question again
Posted: Tue Mar 25, 2003 5:58 pm Post subject: Re: sorry for not writing a smart topic name
justlam_ wrote:
i've checked the first 2 pages for related problem and can't find any yet. the link isn't the same program nor is it related but thanks anyways.
I SAID BOTTOM OF PAGE THREE!!!
MysticAngel
Posted: Tue Mar 25, 2003 6:50 pm Post subject: (No subject)
hi. i did the same thing. here is thepeice of code that might help u
loop
put ""
put "Please enter the size"
get size
put ""
exit when size < 21 and size > 1
end loop
for decreasing i : size .. 0 by 1
for i2 : 0 .. i
put " " ..
end for
for i3 : 1 .. size - i * 2
put "*" ..
end for
put ""
end for
for i : 1 .. size
for i2 : 0 .. i
put " " ..
end for
for i3 : 1 .. size - i * 2
put "*" ..
end for
put ""
end for
MOD Edit: Thx for sharing your code with us I'll give you some bits