Click here to Skip to main content
15,885,214 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i didn't find my error ..
please check my code ..
C++
#include <iostream>

using namespace std;

int main()
{
    int input;
    cout << "Enter Value for rows to print: ";
    cin >> input;
    int no = 1;
    int i, j = 0;
    while(i<input)
    {
        while(j<3)
        {
            cout << no << " ";
            no = no + 1;
            j++;
        }
        cout << endl;
        j = 0;
        i++;
    }
    return 0;
}
Posted
Comments
Sergey Alexandrovich Kryukov 2-Jan-13 14:41pm    
You always need to specify what you wanted to get from this code... And you always should execute your code under the debugger. And what "output", for goodness sake? You cannot get help if you don't describe the problem.
—SA

1 solution

The first apparent bug I can see is: the variable i is not initialized. You only initialize j in the same line where you declare i and j.

You need to understand very clearly: if you leave any variables not initialized, the result can be unpredictable.

Keep working,
—SA
 
Share this answer
 
Comments
Usman Hunjra 2-Jan-13 14:51pm    
WOW .. It works..
Thank you so much for your consideration S I R !!
Sergey Alexandrovich Kryukov 2-Jan-13 15:07pm    
My pleasure; it was quite easy :-)
You are welcome.
Keep working, good luck, call again.
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900