29 lines
423 B
C
29 lines
423 B
C
// Draws a pyramid using iteration
|
|
|
|
#include <cs50.h>
|
|
#include <stdio.h>
|
|
|
|
void draw(int n);
|
|
|
|
int main(void)
|
|
{
|
|
// Get height of pyramid
|
|
int height = get_int("Height: ");
|
|
|
|
// Draw pyramid
|
|
draw(height);
|
|
}
|
|
|
|
void draw(int n)
|
|
{
|
|
// Draw pyramid of height n
|
|
for (int i = 0; i < n; i++)
|
|
{
|
|
for (int j = 0; j < i + 1; j++)
|
|
{
|
|
printf("#");
|
|
}
|
|
printf("\n");
|
|
}
|
|
}
|