:
#include<iostream>
#include<conio.h>
using namespace std;
void main()
{int x,y;
for(int
x=5;x>=0;x--){
for(int
y=0;y<x;y++)
{
cout<<"*";
}
cout<<endl;
}
getche
();
}
0 comments:
Post a Comment