1
Projects and Discussion / Re: I need Help with my C++ homework
« on: September 29, 2013, 02:25:14 AM »
I'm aware of that. What i don't know is how to get the computer to output that! that's my question
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
#include <iostream>
using namespace std;
int main ()
{
int age; //to hold the users age
int DOB; // to hold the users date of birth;
int specialNumber, specialNumber1;
cout <<"Which month were you born in? For example enter 1 if you were born in Jan" << endl;
cin >> DOB;
cout << "Enter your age" << endl;
cin >> age;
specialNumber = (DOB * 2 +5) * 50 + (age) - 365;
specialNumber1 = specialNumber + 115;
cout << specialNumber << "the new number is " << specialNumber1;
cout << "Your Birthday is in "
return 0;
}