Click here to Skip to main content
16,020,343 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
Write a C++ program using for loop that outputs the following pattern. The program should prompt the user for an integer number.
Hint – Use a function.
Example 1: if the user enters 7, then the output should be:

1
22
333
4444
55555
666666
7777777


Example 2: if the user enters 3, then the output should be:

1
22
333


What I have tried:

C++
#include <iostream>

using namespace std;

int main()
{ int lineNo;
int x;
int num;
cout<<"enter a number "<<endl;
cin>>num;
for (lineNo = 1; lineNo <= num ; lineNo ++)
    {
        for (x = 1; x <= lineNo  ; x++)
                  cout<<num;
    cout<<endl;
    }
    return 0;
}
Posted
Updated 4-Dec-16 12:35pm
v5
Comments
RedDk 4-Dec-16 17:09pm    
Repost

1 solution

Quote:
I tried to do it but it never works for me
We know it didn't work for you because otherwise you wouldn't be here.
Show your code and explain your problem, showing actual result is also an information.
[Update]
Try to replace
C++
cout<<num;

with
C++
cout<<lineNo;

You were writing the number of lines instead of the current line number.
[End Update]

We do not do your HomeWork.
HomeWork is not set to test your skills at begging other people to do your work, it is set to make you think and to help your teacher to check your understanding of the courses you have taken and also the problems you have at applying them.
Any failure of you will help your teacher spot your weaknesses and set remedial actions.
So, give it a try, reread your lessons and start working. If you are stuck on a specific problem, show your code and explain this exact problem, we might help.

As programmer, your job is to create algorithms that solve specific problems and you can't rely on someone else to eternally do it for you, so there is a time where you will have to learn how to. And the sooner, the better.
When you just ask for the solution, it is like trying to learn to drive a car by having someone else training.
Creating an algorithm is basically finding the maths and make necessary adaptation to fit your actual problem.

Advice: take a sheet of paper and try to do it by hand, your program should use the same procedure.
 
Share this answer
 
v4
Comments
Member 12886219 4-Dec-16 16:03pm    
#include <iostream>

using namespace std;

int main()
{ int lineNo;
int x;
int num;
cout<<"enter a number "<<endl;
cin>>num;
for (lineNo = 1; lineNo <= num ; lineNo ++)
{
for (x = 1; x <= lineNo ; x++)

cout<<num;
cout<<endl;
}

return 0;
}
Patrice T 4-Dec-16 16:05pm    
Use Improve question to update your question.
So that everyone can pay attention to this information.
Patrice T 4-Dec-16 18:45pm    
dear downvoter, there was no code when I first answered.

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