Text Only
|
Text with Attachments
QB64.org Forum
Active Forums => Programs => Topic started by: bplus on October 16, 2018, 08:38:15 pm
Title:
Oh that Floyd
Post by:
bplus
on
October 16, 2018, 08:38:15 pm
http://rosettacode.org/wiki/Floyd%27s_triangle
Code: QB64:
[Select]
floyd
20
SUB
floyd
(
row
)
LOCATE
row
,
1
FOR
i
=
(
(
row
-
1
)
*
row
)
/
2
+
1
TO
row
*
(
row
+
1
)
/
2
PRINT
RIGHT$
(
" "
+
STR$
(
i
)
,
4
)
;
NEXT
PRINT
IF
row
>
1
THEN
floyd
(
row
-
1
)
END
SUB
Title:
Re: Oh that Floyd
Post by:
bplus
on
October 17, 2018, 10:11:55 am
Dang! I missed the Rosetta spec about spacing, that makes it much more tricky.
Title:
Re: Oh that Floyd
Post by:
bplus
on
October 17, 2018, 10:56:18 am
John from All BASIC has nice version.
Code: QB64:
[Select]
_TITLE
"Floyd John's version"
' from All BASIC 2018-10-17 looking pretty good!"
l
=
14
'number of rows for Floyd to process
n
=
1
' number increment
FOR
r
=
1
TO
l
FOR
c
=
1
TO
r
PRINT
RIGHT$
(
" "
+
STR$
(
n
)
,
LEN
(
STR$
(
c
+
l
*
(
l
-
1
)
/
2
)
)
)
;
n
=
n
+
1
NEXT
PRINT
NEXT
Notice how the spacing of columns is handled.
Text Only
|
Text with Attachments