Answer:
it will display in this pattern X XX XXX XXXX XXXXX
#include <iostream>
using namespace std;
int
main ()
{
int a,i, j=0;
cout << "enter number for length of triangle";
cin >> i;
for ( a = 1; a <= i; a++)
{
for (j = 1; j <= a; j++)
{
cout << "X";
}
cout<<" ";
}
}
for this
X
XX
XXX
XXXX
XXXXX
#include <iostream>
using namespace std;
int
main ()
{
int a,i, j=0;
cout << "enter number for length of triangle";
cin >> i;
for ( a = 1; a <= i; a++)
{
for (j = 1; j <= a; j++)
{
cout << "X";
}
cout<<endl;
}
}
Manage the computer's resources, such as the central processing unit, memory, disk drives, and printers, (2) establish a user interface, and (3) execute and provide services for applications software.
A good way for a senior employee to mentor a new employee is to share company knowledge and job expertise.
The task where the Layout view most helpful is showing how a report will look when printed.
<h3>What is the Layout view?</h3>
The Layout view is known to be a view that is said to be more of visually-oriented when compared to the Design view.
Note that the Layout view is one where each control often shows real data and as such, The task where the Layout view most helpful is showing how a report will look when printed.
Learn more about Layout view from
brainly.com/question/1327497
#SPJ1