/* L3-3.cpp (Percent Male) What is wrong with this program? Run it with 400 males and 600 females. */ #include using namespace std; int main() { int male, female; cout << "Enter the number of male people" << endl; cin >> male; cout << "Enter the number of female people" << endl; cin >> female; cout << 100.0 * male / male + female << "% of the people" << " in this population are male" << endl; return 0; }