program isnt executing correctly (newbie question)
However when I execute the program it doesn't work as I thought it would
here's the code:
// All about you program
#include "stdafx.h"
#include <iostream>
using namespace std;
int main ()
{
cout<<"How old are you?"<<endl;
int age;
cin>> age;
cout<<"How tall are you?(ft only)"<<endl;
int height;
cin>> height;
cout<<"How much do you weigh?"<<endl;
int weight;
cin>> weight;
cout<<"What color is your hair?"<<endl;
int hair;
cin>> hair;
cout<<"What color are your eyes?"<<endl;
int eyes;
cin>> eyes;
cout<<endl<<"You are"<< age <<"years old,"<< height <<"feet tall."<<endl;
cout<<"You weigh"<< weight <<", you have"<< hair <<"hair, and"<<endl;
cout<< eyes <<"eyes."<<endl;
}
This program was soppused to be a very simple project. All you do is insert your basic info and then the application will state in a sentence what you typed in. however this is what I get when I execute the program:
-----------------------------
How old are you?
15
How tall are you? (ft only)
6
How much do you weigh?
132
What color is your hair?
Black
What color are your eyes?
You are15years old,6feet tall.
You weigh132, you have-858993460hair, and
-858993460eyes.
Press any key to continue . . .
-----------------------------
I can input all the info up to eyes. It doesn't even let me tell it my eye color it just says "What color are your eyes?" and the info right underneith it pop up at the same time.
what did I do wrong, any assistance will be much appreciated

