1. In the code editor, you are provided with a main() function that asks the user for an integer input n, and passes this value to the function call of the generatePattern() function. 2. Your task is to implement this generatePattern() function which has the following description: Return type - void Function name - generatePattern Parameters - 1 integer n Description - this function prints a triangular pattern of letter T's based on the value of n. For more information, refer to the output in the test cases 3.DO NOT EDIT ANYTHING IN THE MAIN Input 1. Integer n This is the given code: #includeusing namespace std; int main(void) { int n; cout << "Enter n: "; cin >> n; generatePattern(n); return 0; }
The Answer to the Question
is below this banner.
Can't find a solution anywhere?
NEED A FAST ANSWER TO ANY QUESTION OR ASSIGNMENT?
Get the Answers Now!You will get a detailed answer to your question or assignment in the shortest time possible.
Here's the Solution to this Question
using namespace std;
/*
1. In the code editor, you are provided with a main() function that asks the user for an integer input n, and passes this value to the function call of the generatePattern() function.
2. Your task is to implement this generatePattern() function which has the following description:
Return type - void
Function name - generatePattern
Parameters - 1 integer n
Description - this function prints a triangular pattern of letter T's based on the value of n.
For more information, refer to the output in the test cases
3.DO NOT EDIT ANYTHING IN THE MAIN
Input
1. Integer n
This is the given code:
*/
#include <iostream>
using namespace std;
void generatePattern(int n)
{
for(int i=1;i<=n;i++)
{
for(int j=0;j<i;j++) cout<<"1 ";
cout<<"\n";
}
}
int main(void)
{
int n;
cout << "Enter n: ";
cin >> n;
generatePattern(n);
return 0;
}