Napisz program w C++ tak, aby powstało to, co jest podane w załączniku:

#include <iostream>
using namespace std;
int main()
{
cout << " *" << endl;
cout << " * *" << endl;
cout << "* *" << endl;
cout << " * *" << endl;
cout << " *" << endl;
return 0;
}