简体   繁体   中英

C Program triangle

I need to prompt a user to enter a number 'n' then print print stars in separate lines, for exanple if the user enters 5 the following should be printed (Using a while loop)

*
**
***
****
*****
****
***
**
*

The code i have doesn't output that

int n, x = 1, y = 1;
printf("enter a number : ");
scanf_s("%d", &n);

while (x <= n){
    x++;
    while (y <= x){

        while (y >= n){
            y--;
            printf("*");
        }
        printf("\n");

    }
    system("pause");
}

}

This should work for you:

#include <stdio.h>

int main() {

    int number, count, characterCount;


    printf("Please enter a number:\n>");
    scanf("%d", &number);

    for(count = 1; count <= number; count++) {

        for(characterCount = 1; characterCount <= count; characterCount++)
            printf("*");

        printf("\n");

    }

        for(count = 1; count < number; count++) {

        for(characterCount = number-1; characterCount >= count; characterCount--)
            printf("*");

        printf("\n");

    }


    return 0;
}

Edit after comment:

Solution with while loop:

#include <stdio.h>

int main() {

    int number, count = 1, characterCount;


    printf("Please enter a number:\n>");
    scanf("%d", &number);

    while(count <= number) {

        characterCount = 1;
        while(characterCount <= count) {
            printf("*");
            characterCount++;
        }

        printf("\n");
        count++;
    }

    count = 1;

    while(count < number) {

        characterCount = number-1;
        while( characterCount >= count) {
            printf("*");
            characterCount--;    
        }

        printf("\n");
        count++;
    }


    return 0;
}

You can make it using only 2 for loops like this:

int i,k,n,flag=0;
printf("Enter Number of Rows    :");
scanf("%d",&n);
for(i=-n;i<=n;i++)
{
    if(i < 0)
    {
        i = -i;
        flag=1;
    }
    for(k=(n-i)+1;k>0;k--)
    {
        printf("*");
    }
    if(flag==1)
    {
        i=-i;flag=0;
    }
    printf("\n");
}

For example if user enter value 2 it will print

*
**
***
**
*

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM