in a town the percentage of total men is 52. the percentage
of total literacy is 48. if total percentage of literate men
is 35 of total population. write a program to find out the
total no of illiterate men and women.
Answer Posted / kirankanneti
int totalliteracy;
Console.WriteLine("enter the population");
int s = int.Parse(Console.ReadLine());
int totalmen = s * 52 / 100;
int totalliteracy = s * 48 / 100;
int menliteracy = s * 35 / 100;
int womenliteracy = totalliteracy - menliteracy;
totalliteracy = menliteracy + womenliteracy;
| Is This Answer Correct ? | 4 Yes | 7 No |
Post New Answer View All Answers
Why do we need constructors?
HOW to Develope the CRUD(create,read,update,delete) FORM IN WINDOWS form by using c# only
What is dictionary collection in c#?
Can interface inherit class in c#?
Can abstract class have constructor?
What is a datacontract?
How to implement an object pool in c#.net.
Who introduced c#?
Is multiple inheritance possible in c#?
Explain the difference between abstract class and interface in .net?
Explain the difference between .net and c#?
Major difference between Basic httpbinding and WShttpbinding?
What is an argument in c#?
Why singleton is sealed?
What is difference between C# and VB.NET?