#include<iostream.h>
#include<conio.h>
class mahi
{
public:
int i,j,n;
void put(void);
void set(int);
void show(void);
};
void mahi::put()
{
cout<<"\n WELCOME\n\n\n";
}
void mahi::set(int c)
{
n=c;
}
void mahi::show()
{
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
{
cout<<" "<<"*";
}
cout<<"\n";
}
}
void main()
{
clrscr();
mahi m1;
m1.put();
m1.set(5);
m1.show();
getch();
}
#include<conio.h>
class mahi
{
public:
int i,j,n;
void put(void);
void set(int);
void show(void);
};
void mahi::put()
{
cout<<"\n WELCOME\n\n\n";
}
void mahi::set(int c)
{
n=c;
}
void mahi::show()
{
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
{
cout<<" "<<"*";
}
cout<<"\n";
}
}
void main()
{
clrscr();
mahi m1;
m1.put();
m1.set(5);
m1.show();
getch();
}
No comments:
Post a Comment