+ 11
{CHALLENGE} Floyd pattern!
It is a right-angled triangular array of natural numbers, It is defined by filling the rows of the with consecutive numbers, starting with a 1 in the top left corner: 1. 2. Enter the number of rows of floyd's triangle : 5 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Any programming language!
12 Respuestas
+ 4
pretty simple but i like it
https://code.sololearn.com/c3GDTJ5eK3fz/?ref=app
https://code.sololearn.com/w7pt7zVLsji8/?ref=app
+ 3
https://www.sololearn.com/discuss/1226315/?ref=app
+ 2
https://code.sololearn.com/cv9x3370nQF2/?ref=app
+ 1
Floyd's triangle, as well as reverse Floyd's triangle, in C:
https://code.sololearn.com/ceC3RGlMxjO5/