Create a star pyramid. First line will have 1 star, second will have two stars and so on... a basic program which is easily done in c programming.
Example
n = 3 p = pyramid(n)
returns this string matrix in p
'* ' '** ' '***'
The output p is an n-by-n string matrix with spaces (ASCII=32) in the blank spots and '*' as shown.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers220
Suggested Problems
-
Project Euler: Problem 6, Natural numbers, squares and sums.
2571 Solvers
-
Back to basics 21 - Matrix replicating
1810 Solvers
-
Compute a dot product of two vectors x and y
1052 Solvers
-
Find nearest prime number less than input number
1020 Solvers
-
1482 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I cleaned up the problem statement and test suite.