Thread: Printing a pattern to the screen

  1. #16
    Registered User
    Join Date
    May 2015
    Posts
    90
    Quote Originally Posted by PhantomJoe View Post
    I know I need to incorporate the logic you laid out to get the correct number of asterisks (row*2-1) but because I'm unsure of how to implement that I've just been trying to insert it in different places in the inner loop.

    In the below example I've used it in the inner loop in the test condition portion and that produces an infinite loop.

    Code:
    int main()
    {
        int row;
        int col;
        
        for (row = 1; row <= 4; row++) //rows
        {
            for (col = 1; col = row*2-1; col++) //columns
            {
                printf_s("*");
            }
    
    
            printf_s("\n");
        }
    
    
        return 0;
    }
    When I use it in the initiate location of the inner loop I get just a single asterisk (code below):
    Code:
    int main()
    {
        int row;
        int col;
        
        for (row = 1; row <= 4; row++) //rows
        {
            for (col = row*2-1; col <= row; col++) //columns
            {
                printf_s("*");
            }
    
    
            printf_s("\n");
        }
    
    
        return 0;
    }

    I also want to say thank you for your help and I'm trying to not get frustrated but as this is my first ever exposure to programming I sometimes feel like I'm in over my head.
    I think you are doing just fine, in the above example you are just mistaking the loop condition:
    Code:
    for (col = 1; col = row*2-1; col++)
    The '=' is the assignment opeartion, that means that your condition is an assignment. Remember '=' is not the same as '=='
    '=' : Assignment.
    '==' : Equivalence operator.

    Code:
    int a;
    
    // Assign 3 to a
    a = 3;
    
    // Compare 3 to a
    a == 3; // This returns true or false (a boolean expression).
    As you know, considering you've done the above code, when you printed asterisks before, this was your condition:
    Code:
     for(col = 1; col <= row; col++)
    Here, when row = 1, then:
    Code:
    col = 1
    col <= row?
    1 <= 1 >> TRUE
    enter loop
    print asterisk
    col = col + 1 (col++)
    
    col = 2
    col <= row?
    2 <= 1 >> FALSE
    exit loop
    
    Ammount of asterisks printed: 1

    I think you can see that everytime row increases, then there is an additional asterisk printed.

    Our example when looping "against" the condition 2*row-1 is the same as the example above.

    As for your second code, see that:
    Code:
    for (col = row*2-1; col <= row; col++)
    You are mistaking the condition, which refers to the ammount of asterisks to print depending on what the row is (this is the function that generalizes to 2n-1 where n is row qty), with the initial value to start looping!

    Code:
    for(initial value; condition; increment)*
    - The initial value will be set only at the start of the loop (not of EVERY iteration).
    - The condition will be looked upon after every iteration, if true then the loop continues, if false then we exit the loop.
    - The increment is used to increment the value, so that the value in the condition CHANGES, if it does not, then the condition will always remain TRUE, because it is the same condition as before.

    (*): This explanation is not general for every for loop but to the ones used by the OP.

    If you have doubts with anything that I tried to explain please feel free to ask again.

  2. #17
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,661
    > Hi Salem. So I think I figured out the right code to get your above output:
    You don't do it by just reversing the loop.

    You NEED that loop as it stands to print the asterisks.

    You NEED an expression involving row which tells you how many spaces you need from an increasing row value.

    Here are some examples of an expression involving row. Do any of them inspire you to figure out what might count down from 5 to 0?
    Code:
    for (row = 1; row <= 5; row++) {
      numspaces = row * 2;
      printf("Numspaces=%d\n",numspaces);  // is this it?
      numspaces = -row;
      printf("Numspaces=%d\n",numspaces);  // is this it?
      numspaces = 10 - row * 2;
      printf("Numspaces=%d\n",numspaces);  // is this it?
    }
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

  3. #18
    Registered User
    Join Date
    Sep 2017
    Posts
    23
    Quote Originally Posted by userxbw View Post
    I hope this helps more than hinders,
    Code:
    #include <stdio.h>
    
    int main ()
    
    
    {
        int row;
        int col;
        int space = 16;
    
    
        for (row = 1; row <= 5; row++) //rows
        {
            for (col = 1; col <= row ; col++) //columns
            {
                    //printf("*");
                    //printf("%d",space);
                    printf("%*c",space,'*');
            }
    space--;
                printf("\n");
        }
        return 0;
    }
    but it does demonstrate how to get the star moved over before printing, it is not an complete answer.
    Can you explain with this printf statement is doing? printf("%*c",space,'*');

    I understand that the %c is identifying the data type that will be printed but I'm not sure I understand what the asterisk is doing between the % and the c. Also, the ,space, portion of the statement... Space is an integer data type variable which in this code initially has a value of 16 (and is later decremented and thus the space reduces by one in the next loop). My question is, what part of that statement is handling the actual leading space itself?

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Pattern Printing
    By sunny` in forum C Programming
    Replies: 2
    Last Post: 03-18-2012, 09:11 PM
  2. Why is this not printing to screen?
    By lilbo4231 in forum C Programming
    Replies: 2
    Last Post: 03-07-2011, 03:10 PM
  3. need help printing this pattern
    By Blimpy325 in forum C Programming
    Replies: 4
    Last Post: 03-04-2006, 06:40 AM
  4. Printing a pattern correctly???
    By Basia in forum C Programming
    Replies: 1
    Last Post: 07-01-2002, 04:34 PM
  5. Printing a Pattern of Stars
    By ProgrammingDlux in forum C++ Programming
    Replies: 13
    Last Post: 03-01-2002, 08:38 AM

Tags for this Thread