Here is what I have so far:
#include <iostream>
using namespace std;
int main()
{
int i;
for (i = 1; i <= 12; i++)
{
cout << i << endl;
}
if (i = 4)
cout << "My lovely month in which I've been born! \n";
system("pause");
return 0;
}
I honestly don't have any idea how to do this... If someone would please help me it would be appreciated :(