I am new to C++ and don't know too much yet. I need an input for every cin statement. I am only able to choose a gender. After that, it prints the rest cout statements on the same line, ignoring every cin.
(The extra ints' are for later, I know they are unused right now)
I changed gender to a char because an Int is a whole number. a char is a character (like on your keyboard) and that can accept M or F. Int also isn't really a good thing for something like this since your result has decimals and int rounds, and also an int can't use a very high number, so I changed the Ints to Doubles. Let me know what you think of this, and if you need help with anything else in this program I would be glad to try!