In: Computer Science
Write a program that asks the user to enter a number. Display
the following pattern by writing lines of asterisks.
The first line will have one asterisk, the next two, and so on,
with each line having one more asterisk than the previous
line,
up to the number entered by the user.For example, if the user
enters 5, the output would be:
*
* *
* * *
* * * *
* * * * *
short codes please
Output:
C Program:
#include<stdio.h>
int main()
{
int n,i,j;
printf("enter a number: ");
scanf("%d",&n);//read number from user
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
printf("*
");//print asterisks in based on line number
printf("\n");//next line
}
}
C++ Program:
#include<iostream>
using namespace std;
int main()
{
int n,i,j;
cout<<"enter a number: ";
cin>>n;//read number from user
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
cout<<"*
";//print asterisks in based on line number
cout<<endl;//next line
}
}