Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I draw a triangle (see below) using only three for loops? I managed to make the one that goes right, but sadly I can't figure out how to do this example!

    *
   **
  ***
 ****
*****
share|improve this question
1  
To specific for this site i guess. You should ask for this on the main stack overflow website since it's a pure programing question. – nathan Oct 3 '12 at 9:07
1  
The trick to this is to consider the negative space. en.wikipedia.org/wiki/Negative_space – Trevor Powell Oct 3 '12 at 9:09
5  
This is too localized a problem. Your question is fairly unclear (besides that you got a school assignment to draw a triangle). This has very little to do with game programming. – Daniel Carlsson Oct 3 '12 at 10:15
You can even draw that triangle without loops ;-) – Valmond Oct 3 '12 at 14:59

migrated from gamedev.stackexchange.com Oct 3 '12 at 15:17

1 Answer

Check {s,a,f,*}printf format, a little sample to print what you want in stdout.

int main (int argc, const char * argv[])
{
    char stars[5] = {0};
    int i;
    for (i = 0; i < 5; i++)
    {
        stars[i] = '*';
        printf("%5s\n", stars);
    }
    return 0;
}
share|improve this answer
The use of 'precision' is left as exercise :-D – Emmanuel Oct 3 '12 at 15:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.