Click here to Skip to main content
15,886,026 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
Of the 1000 of population of a town, 60%are males of whom 20% are literate. If of all the population 25% are literate , the what percent of the female of the are literate
Posted
Updated 7-Nov-12 21:45pm
v3
Comments
nv3 8-Nov-12 3:33am    
This is not the place for pasting your homework. Nor has it to do with programming.
[no name] 8-Nov-12 4:43am    
yes ia agree with nv3.

1 solution

It doesn't seem like a programming problem. It's a simple math problem. It can be something like:


C++
double maleLiterateFraction = (60 / 100) * (20 / 100); // 60% * 20%
double femaleLiterateFraction = 0.25 - maleLiterateFraction; // 25% - (male's literate percent)
double femaleLiteratePercent = femaleLiterateFraction * 100; // Convert fraction to percents

For more information about percentages see: http://www.mathsisfun.com/percentage.html[^].

 
Share this answer
 
v4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900