You are on page 1of 1

// Domashna Informatika triagolnik Katerina Mitrevska

#include <iostream>
#include <cstdlib>
using namespace std;

int main()
{
cout << " * " << endl;
cout << " ** " << endl;
cout << " *** " << endl;
cout << " ****" << endl;
cout << " ***** " << endl;
cout << " ****** " << endl;
cout << " ******* " << endl;
cout << " ******** " << endl;
system("pause");
return 0;
}

// Domashna Informatika pravoagolnik Katerina Mitrevska


#include <iostream>
#include <cstdlib>
using namespace std;

int main()
{
cout << " ******** " << endl;
cout << " ******** " << endl;
cout << " ******** " << endl;
cout << " ******** " << endl;
cout << " ******** " << endl;
cout << " ******** " << endl;
cout << " ******** " << endl;
cout << " ******** " << endl;
system("pause");
return 0;
}

You might also like