Computer Science, asked by shrushtishakya07, 1 year ago

Write a C++ program to display 1
1 2
1 2 3
1 2
1

Answers

Answered by gayu5676
0
#include
#include
void main()
{
clrscr();
cout<<“1\n12\n123\n12\n1\n”;
getch();
}
Similar questions