PDA

View Full Version : Triangles


Demon117
Feb10-11, 09:52 PM
I am trying to get a different orientation on this triangle; specifically I want this output:

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

Here is the code that I have

#include <iostream>
using namespace std;

int main ()
{
int lines=10;
int start = 0;
int dots;
while (start < lines) {
// We start at 0, then gradually increment
for (dots = 0; dots <= start; dots++)
cout << "*";
cout << endl;
start++;// Increment
}
system("pause");
return 0;
}

and it generates this output:

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

What do I need to change?

DavidSnider
Feb10-11, 10:02 PM
Have the for loop count down instead of up?

Demon117
Feb10-11, 10:29 PM
Have the for loop count down instead of up?

Nope, this has been tried already and it produces an infinite loop.

DavidSnider
Feb10-11, 10:30 PM
Nope, this has been tried already and it produces an infinite loop.

Then I think you went wrong somewhere. Can you post code again?

Grep
Feb10-11, 10:39 PM
Nope, this has been tried already and it produces an infinite loop.
If it goes into an infinite loop, you're doing it wrong.

There's two ways to do it that I can think of. Either count through the while loop as you do now, and work out how many asterisks you want. Or count the other way in your while loop. I'd do the former, probably.

Assuming you're printing, say, 7 lines. You start out and the counter is 0. How many asterisks to print? 7 right? Next line, counter is 1. So you print 7-1=6 asterisks. In general, it's (lines - counter) right?

DavidSnider
Feb10-11, 10:45 PM
for extra credit you might want to build a function like:

void printStars(int numStars) {
....
}

then in main:
for(int i=0;i<lines;i++) {
printStars(lines - i);
}

Demon117
Feb10-11, 10:48 PM
Then I think you went wrong somewhere. Can you post code again?

Here:


#include <iostream>
using namespace std;

int main ()
{
int lines=10;
int start = 0;
int dots;
while (start < lines) {
// We start at 0, then gradually increment
for (dots = 0; dots <= start; dots++)
cout << "*";
cout << endl;
start++;// Increment
}
system("pause");
return 0;
}

DavidSnider
Feb10-11, 10:55 PM
I meant post the code where you counted down and got the infinite loop problem :smile:

But I'd try the method I suggested earlier with an external function to print each line first.

Here:


#include <iostream>
using namespace std;

int main ()
{
int lines=10;
int start = 0;
int dots;
while (start < lines) {
// We start at 0, then gradually increment
for (dots = 0; dots <= start; dots++)
cout << "*";
cout << endl;
start++;// Increment
}
system("pause");
return 0;
}

chiro
Feb10-11, 11:34 PM
Like other people have said change the loop.

When you change the loop to go from sup(Set) to inf(Set) you also need to change the comparisons you make from less than to greater than.

Also make sure you are using signed numbers. You can get in an infinite loop if you use these incorrectly.