diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-02-18 00:02:53 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-02-18 00:02:53 +0000 |
commit | 49c4599639c9015ea879cc9d8ccf819e09df271d (patch) | |
tree | 67a962455283332fadbe4b820cfa05eef60b9d6d /wk3/lect/iteration.c | |
parent | 19fd1f6fe17e43ebd83020539a13af18197070cc (diff) |
Sat, Feb 17, 2024, 4:02 PM -08:00
Diffstat (limited to 'wk3/lect/iteration.c')
-rw-r--r-- | wk3/lect/iteration.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/wk3/lect/iteration.c b/wk3/lect/iteration.c new file mode 100644 index 0000000..32a8a9d --- /dev/null +++ b/wk3/lect/iteration.c @@ -0,0 +1,21 @@ +#include <cs50.h> +#include <ctype.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +void draw(int n); + +int main(void) { + int height = get_int("Height: "); + draw(height); +} + +void draw(int n) { + for (int i = 0; i < n; i++) { + for (int j = 0; j < i + 1; j++) { + printf("#"); + } + printf("\n"); + } +} |