As part of solving Mario problem, I have broken it into first coming out with the first row with # on the last column. Even this appears tricky to me! Any tips or hints appreciated as to how to modify with the following initial code:
#include <stdio.h>
#include <cs50.h>
int main(void)
{
int t = get_int("height\n");
for (int i = 0; i <t; i++)
{
printf("#");
}
}
Perhaps need to build with t – 1 taking dots or blank spaces and t taking #.
Reply
https://edstem.org/us/courses/176/discussion/1678193[learn_press_profile]