write the flow chat program for project to identify total population of residence in rural area
#include <iostream>
using namespace std;
int main()
{
  int total_p, male_population, female_population;
  Â
  cout<<"Enter number of Male Population: "<<endl;
  cin>>male_population;
  Â
  cout<<"Enter number of Feale Population: "<<endl;
  cin>>female_population;
  Â
  cout<<"Total Population: "<< male_population + female_population;
  return 0;
}
Comments
Leave a comment