Floyd's triangle is named after Robert Floyd. A right-angled triangular array of
natural number is called Floyd's triangle.
For Eg :
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15
16 17 18 19 20 21
Floyd's triangle is defined by starting with a 1 in the top left corner and filling
the rows of the triangle with consecutive numbers.
Lets see now how to create the program using Julia
function createFlyodTriangle(numberOfRows)
printNo =1;
for a=0:numberOfRows
for b=0:a
print(printNo," ")
printNo= printNo+1
end
println(" ")
end
end
Output :
julia> createFlyodTriangle(2)
1
2 3
4 5 6
julia> createFlyodTriangle(5)
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15
16 17 18 19 20 21
julia> createFlyodTriangle(11)
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15
16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31 32 33 34 35 36
37 38 39 40 41 42 43 44 45
46 47 48 49 50 51 52 53 54 55
56 57 58 59 60 61 62 63 64 65 66
67 68 69 70 71 72 73 74 75 76 77 78
natural number is called Floyd's triangle.
For Eg :
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15
16 17 18 19 20 21
Floyd's triangle is defined by starting with a 1 in the top left corner and filling
the rows of the triangle with consecutive numbers.
Lets see now how to create the program using Julia
function createFlyodTriangle(numberOfRows)
printNo =1;
for a=0:numberOfRows
for b=0:a
print(printNo," ")
printNo= printNo+1
end
println(" ")
end
end
Output :
julia> createFlyodTriangle(2)
1
2 3
4 5 6
julia> createFlyodTriangle(5)
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15
16 17 18 19 20 21
julia> createFlyodTriangle(11)
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15
16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31 32 33 34 35 36
37 38 39 40 41 42 43 44 45
46 47 48 49 50 51 52 53 54 55
56 57 58 59 60 61 62 63 64 65 66
67 68 69 70 71 72 73 74 75 76 77 78
Comments
Post a Comment