You are on page 1of 2

#include<iostream>

#include<conio.h>
using namespace std;
int main()
{
int date,month;
cout<<"enter the date of birth =";
cin>>date;
cout<<"enter the month =";
cin>>month;
if((date>=20 && month==1 || date<=19 && month==2))
{
cout<<"your zodica sign is Aquarius";
}
if((date>=20 && month==2 || date<=20 && month==3))
{
cout<<"your zodica sign is pisces";
}
if((date>=21 && month==3 || date<=19 && month==4))
{
cout<<"your zodica sign is Aries";
}
if((date>=20 && month==4 || date<=20 && month ==5))
{
cout<<"your zodica sign is Taurus";
}
if((date>=21 && month==5 || date<=21 && month==6))
{
cout<<"your zodica sign is Gemini";
}
if((date>=22 && month==6 || date<=23 && month==7))
{
cout<<"your zodica sign is Cancer";
}
if((date>=24 && month==7 || date<=23 && month==8))
{
cout<<"your zodica sign is Leo";
}
if((date>=24 && month==8 || date<=22 && month==9))
{
cout<<"your zodica sign is Virgo";
}
if((date>=23 && month==9 || date<=22 && month==10))
{
cout<<"your zodica sign is Libra";
}
if((date>=23 && month==10 || date<=22 &&month==11))
{
cout<<"your zodica sign is Scorpio";
}
if((date>=23 && month ==11 || date<=20 && month==12))
{
cout<<"your zodica sign is Sagitarius";
}
if((date>=21 && month==12 || date<=20 && month==1))
{
cout<<"your zodica sign is Capricorn";
}
return 0;
}

You might also like