Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<iostream>

using namespace std;


int n,i,j;
cout<< " enter n " ;
cin>>n;
int main()
{
for(i=1;i<n;i++){
cout<<i<<endl;
}
for(j=1;j<i;j++)
{
cout<< " * " <<j;
}

You might also like