|
I'm building a pyramid of asterisk with for loop statement:
for (int i = 1, i < 5, i++)
{
for (int j = 1; j <= i, j++)
{
cout << "*";
}
cout << endl;
}
here's is the question: i need another for loop statement to reverse the pyramid. I need it has to do something with the spaces, but could not write one. Since i don't have a database to look at. Could someone hint me in the right direction?
|
|
|
|
|
Not clear... what do you mean a for loop to reverse the pyramid? ..you mean you want to undo what you just did?
|
|
|
|
|
"Normal" counts from 1 to 5, so I would guess that reverse counts down from 5 to 1.
Unrequited desire is character building. OriginalGriff
I'm sitting here giving you a standing ovation - Len Goodman
|
|
|
|
|
Richard M.:
reverse count down from 5 to 1 only inverted the pyramid, not REVERSE it !
what I'm trying to create is a RIGHT-ALIGNED pyramid going from 1 to 5 in counts, as oppose to a left-aligned pyramid counting from 1 to 5. Hope you get this.
|
|
|
|
|
With this new information I think I misunderstood what you meant with reversing in my other post; you'll probably want to use this:
for (int i = 1; i < 5; i++){
for (int j = 1; j < 5-i; j++){
cout << " ";
}
for (; j < 5; j++){
cout << "*";
}
cout << endl;
}
modified 13-Sep-18 21:01pm.
|
|
|
|
|
You might want to declare j outside the for loop - according to the current C++ standard its scope would end with the end of the for loop and using it after that would result in a compiler error.
|
|
|
|
|
Thanks, good point. I use VC6 most of the time so I didn't get an error.
modified 13-Sep-18 21:01pm.
|
|
|
|
|
I believe most compilers supported this for a long time. I know for fact that it worked in VC7 (VS 2003), but it does not in VC10 (VS 2010).
|
|
|
|
|
Richard M.:
yes, but the asterisk pyramid is on the opposite of that count.
|
|
|
|
|
Yolande MR wrote: I need it has to do something with the spaces, but could not write one. Since i don't have a database to look at.
This is very unclear?
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Show me a community that obeys the Ten Commandments and I'll show you a less crowded prison system." - Anonymous
|
|
|
|
|
DavidCrow:
What I mean is that I don't know how to write a for loop statement that write out spaces, instead of characters.
|
|
|
|
|
A space is just another character. What's wrong with:
for (int x = 0; x < 5; x++)
cout << " ";
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Show me a community that obeys the Ten Commandments and I'll show you a less crowded prison system." - Anonymous
|
|
|
|
|
The idea is to make a pyramid of spaces the same way you made the one you posted, but one character shorter, then write asterisks for the remainder of the line length:
for (int i = 1; i < 5; i++){
for (int j = 1; j < i; j++){
cout << " ";
}
for (; j < 5; j++){
cout << "*";
}
cout << endl;
}
Also your loops use commas rather than semicolons, which won't compile; I fixed that in my example.
modified 13-Sep-18 21:01pm.
|
|
|
|
|
Thaddeus Jones:
THANK YOU. I was able to to twist your codes around to achieve my goal. I know you are testing my c++ skills. Since I just learned how to write an inverted pyramid of asterisk, I was able to substitute asterisks for spaces, and write two pyramids into one project.
|
|
|
|
|
Anytime 
modified 13-Sep-18 21:01pm.
|
|
|
|
|
This is a code to update a process monitoring program when the value changes, the following code is the invoke. To me it looks right, but the code wont function, the error is "Object reference not set to an object instance." What to do?
private void LocalProcesses_Update(int ProcessID, int ValueIndex, string NewValue)
{
if (this.InvokeRequired == true)
{
object[] newList_Item = new object[] { ProcessID, ValueIndex, NewValue };
this.Invoke(new InvokeProcessList(LocalProcesses_Update), newList_Item);
}
else
{
LocalProcesses.BeginUpdate();
LocalProcesses.Items[ProcessID.ToString()].SubItems[ValueIndex.ToString()].Text = NewValue;
LocalProcesses.EndUpdate();
LocalProcesses.Refresh();
}
}
modified 5-Dec-11 9:06am.
|
|
|
|
|
What line is the error on? If I had to guess, it's the fact that you have object[] as an object type.
|
|
|
|
|
This looks more like C# code; are you sure you've posted this to the correct forum? It would also help if you put <pre> tags around your code so it is readable.
Unrequited desire is character building. OriginalGriff
I'm sitting here giving you a standing ovation - Len Goodman
|
|
|
|
|
Good point... that does look like C# now that I look closer.
|
|
|
|
|
I'm also amazed at how many C# programmers apparently have no clue as to the meaning of the message "Object reference not set to an object instance.".
Unrequited desire is character building. OriginalGriff
I'm sitting here giving you a standing ovation - Len Goodman
|
|
|
|
|
Richard MacCutchan wrote: C# programmers dabblers apparently have no clue as to ...
FTFY
|
|
|
|
|
hi,
is there any method to find out file is password protected or not.
thanks.
|
|
|
|
|
What file? Please be more specific.
"Real men drive manual transmission" - Rajesh.
|
|
|
|
|
word or excel type files.
|
|
|
|
|
HI,
i just want to know, if i inter-change my office document file to each other, like .doc, to .xls or .ppt
than after interchanging the file type the file not open properly when i m trying to open now is there any way to identify waht is the original file type/
thanks.
|
|
|
|