enum e_usflcnst{
CATLIFE_FACTOR=7.6 //enumerator value for catlife_factor is not an integer
// this is what im tryin to do
};
int main()
{
int age;
cout << "Enter your age: ";
cin >> age;
age /=CATLIFE_FACTOR;
if(age==0)
{
return EXIT_SUCCESS;
}
else
{
cout << "If you were cat, you would be " << age << endl;
}}