#include <cstdlib>
#include <iostream>
#include <conio.h>
using namespace std;
void x();
void x(char);
void x(char,int);
void x(char,int,char);
void x(int);
void x(char);
int main(int argc, char *argv[])
{
x();
x('B');
x('E',30);
x('B',30,'E');
x(10);
x('V');
getch();
}
void x()
{
for(int j=0;j<50;j++)
cout << '*';
cout << endl;
}
void x(char xx)
{
for(int j=0;j<50;j++)
cout << xx;
cout << endl;
}
void x(char xx,int yy)
{
for(int j=0;j<yy;j++)
cout << xx;
cout << endl;
}
void x(char xx,int yy, char pi)
{
for(int j=0;j<yy;j++)
cout << xx << "."<<pi;
cout << endl;
}
void x(int yy)
{
for(int j=0;j<yy;j++)
cout << j << ".";
cout << endl;
}
void x(char xx)
{
for(int j=0;j<50;j++)
cout << xx;
cout << endl;
}
burcin erek 0 Junior Poster in Training
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.