| | |
C++ nest loop program - Help
Please support our C++ advertiser: Intel Parallel Studio Home
Thread Solved |
•
•
Join Date: Aug 2006
Posts: 9
Reputation:
Solved Threads: 0
Hi I am trying to write a small C++ program using nested loops so that when the program executes I have the following output displayed
Here is the code I have written. I seem to be having a problem with proper loop execution. I would appreciate any help in determining where I have gone wrong. I print out 14 stars ad that is it.
Thank you Steve Swickard
C++ Syntax (Toggle Plain Text)
** **** ****** ******** ********** ************
Here is the code I have written. I seem to be having a problem with proper loop execution. I would appreciate any help in determining where I have gone wrong. I print out 14 stars ad that is it.
Thank you Steve Swickard
C++ Syntax (Toggle Plain Text)
//I include any header files I need here #include <iostream> #include <string> using std::cin; using std::string; using std::cout; using std::endl; int main() { //I declare variables and constants here const char STAR ='*'; int i =0; int j =0; int k =0; for(; i<7; i++) // my first loop or out loop to execute //6 times { for (;j<k;j=j++) // this loop determines how many * to print { cout << STAR; } { for (;k !=14; k=k+2) // this loop determines the max # of * //to print cout << endl; } } return 0; } //end of main function
Last edited by Dave Sinkula; Sep 9th, 2006 at 7:34 pm. Reason: Added [code][/code] tags -- learn to use them yourself.
•
•
Join Date: Aug 2006
Posts: 9
Reputation:
Solved Threads: 0
•
•
•
•
Format your code properly with code tags and finish your for statements (3 parameters, not 2) and repost...
Then we have something readable to work with.
C++ Syntax (Toggle Plain Text)
#include <iostream> #include <string> using std::cin; using std::string; using std::cout; using std::endl; int main() { const char STAR ='*'; int k=2; for(int i=0; i<7; i++) { for(int j=0;j<k;j=j++) { cout << STAR; } { for(int k=0;k < 14; k= k+2) cout << endl; } } return 0; } //end of main function
Thank you for any assistance you might provide
Steve
Last edited by Dave Sinkula; Sep 9th, 2006 at 7:35 pm. Reason: Fixed [code][/code] tags.
•
•
•
•
If I understand right I needed to enclose my code in [] right?

•
•
•
•
I re-wrote the for statements although I thought that it was okay to declare variables earlier in the program and just place a ";" in the place of the the variable declaration in the for statement? I was unable to get the k variable to compile without first declaring it.
Also, formatting is of primary importance. Every time you use { indent 4 spaces. Just before you use every }, unindent.
Formatted properly, you code looks like:
C++ Syntax (Toggle Plain Text)
#include <iostream> #include <string> using std::cin; using std::string; using std::cout; using std::endl; int main() { int i; int j; int k; const char STAR ='*'; k=2; // What does this statement do for you? // What's the value the second time thru the I loop? for(i=0; i<7; i++) { for(j=0;j<k;j=j++) { cout << STAR; } { // Why are you starting a new block? for(k=0;k < 14; k= k+2) cout << endl; } } return 0; } //end of main function
The 3 Laws of the Procrastination Society:
1) Never do today that which can be put off until tomorrow
2) Tomorrow never comes
1) Never do today that which can be put off until tomorrow
2) Tomorrow never comes
I don't see the reason for the 3rd loop You'll be outputting 7 newlines between rows of stars... is that what you meant to do?
C++ Syntax (Toggle Plain Text)
for(int k = 0; k < 14; k += 2) cout << endl;
•
•
Join Date: Aug 2006
Posts: 9
Reputation:
Solved Threads: 0
•
•
•
•
No. You enclose the code in tags. You could possiblly use the PREVIEW button to see if your post looks right...
Yes you should declare your variables earlier in the program. And yes you can just ";" if you know what you're doing. The first position is not a variable declaraction is a variable initialization, the first value the variable has thru the loop.
Also, formatting is of primary importance. Every time you use { indent 4 spaces. Just before you use every }, unindent.
Formatted properly, you code looks like:
C++ Syntax (Toggle Plain Text)
#include <iostream> #include <string> using std::cin; using std::string; using std::cout; using std::endl; int main() { int i; int j; int k; const char STAR ='*'; k=2; // What does this statement do for you? // What's the value the second time thru the I loop? for(i=0; i<7; i++) { for(j=0;j<k;j=j++) { cout << STAR; } { // Why are you starting a new block? for(k=0;k < 14; k= k+2) cout << endl; } } return 0; } //end of main function
My thinking was that I since I needed to print six lines of star's that I would have the outer loop run six times, then I needed an inner loop to run six times but increment by 2 such that I would have another loop run 2 times, then 4, then 6, then 8, 10 and finally 12 times so that my cout <<STAR; statement would be printed by the same number each time through so that I would have the following output:
** print 2 times
**** print 4 times
****** print 6 times
******** print 8 times
********** print 10 times
************ print 12 times
I seem to have one loop running while the others do not run or they seem not not run I just want to know where I am going wrong thank you
Steve
•
•
•
•
WaltP it never occured to me at the time to preview my post but your absolutely correct and thank you for the pointer on initialization of the variable.

•
•
•
•
My thinking was that I since I needed to print six lines of star's that I would have the outer loop run six times, ...
•
•
•
•
then I needed an inner loop to run six times but increment by 2 such that I would have another loop run 2 times, then 4, then 6, then 8, 10 and finally 12 times so that my cout <<STAR; statement would be printed by the same number each time through so that I would have the following output:
** print 2 times
**** print 4 times
****** print 6 times
******** print 8 times
********** print 10 times
************ print 12 times
Let's think about this... (yeah, I know that's what we're doing...
)You have one outer loop that goes from 0 to 6
for(i=0; i<7; i++)That's 7 lines... What's wrong here? That you can fix easily.
Now you want 6 lines of 2, 4, 6, 8... *s. Your loop goes 0, 1, 2, 3...
Is there a correlation between what you want and your loop?
The 3 Laws of the Procrastination Society:
1) Never do today that which can be put off until tomorrow
2) Tomorrow never comes
1) Never do today that which can be put off until tomorrow
2) Tomorrow never comes
•
•
Join Date: Aug 2006
Posts: 9
Reputation:
Solved Threads: 0
•
•
•
•
Hmmmm.... no comment
Good thought.
You just complexed it out of reason.
Let's think about this... (yeah, I know that's what we're doing...)
You have one outer loop that goes from 0 to 6
for(i=0; i<7; i++)
That's 7 lines... What's wrong here? That you can fix easily.
Now you want 6 lines of 2, 4, 6, 8... *s. Your loop goes 0, 1, 2, 3...
Is there a correlation between what you want and your loop?
Yes now that you have pointed it out I see that there is a correlation between the two sets.
My outer loop is:
0, 1,2,3,4,5
the difference between that and what I need to print is
2,3,4,5,6,7
so the inner loop actually would appread to be the outer loop number +1 right?
so I could add 1 to i for the inner loop such as j=i+2; ?
Thank you
•
•
•
•
Okay for your first question I should change the for statement to i<6
Yes now that you have pointed it out I see that there is a correlation between the two sets.
My outer loop is:
0, 1,2,3,4,5
the difference between that and what I need to print is
2,3,4,5,6,7
so the inner loop actually would appread to be the outer loop number +1 right?
so I could add 1 to i for the inner loop such as j=i+2; ?
Thank you
The 3 Laws of the Procrastination Society:
1) Never do today that which can be put off until tomorrow
2) Tomorrow never comes
1) Never do today that which can be put off until tomorrow
2) Tomorrow never comes
![]() |
Other Threads in the C++ Forum
- Previous Thread: A few questions on classes!..
- Next Thread: Met problems with my first win32 program
| Thread Tools | Search this Thread |
api array arrays beginner binary bitmap c++ c/c++ calculator char char* class classes coding compile compiler console conversion convert count data database delete desktop developer directshow dll dynamiccharacterarray email encryption error file forms fstream function functions game generator getline google graph homeworkhelper iamthwee ifstream input int integer java lib linkedlist linux list loop looping loops map math matrix memory multiple news node number numbertoword output parameter pointer problem program programming project proxy python random read recursion recursive reference return rpg sorting string strings struct template templates test text tree unix url vector video visualstudio win32 windows winsock word wordfrequency wxwidgets






