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 / lalit arora
int total;
public void methods()
{
Console.WriteLine("Enter The total population");
int s = int.Parse(Console.ReadLine());
int totalman = s * 52 / 100;
int totalwoman = s * 48 / 100;
int manliteracy = s * 35 / 100;
int womanliteracy = s * 13 / 100;
total = manliteracy + womanliteracy;
}
just call this method and see the result
| Is This Answer Correct ? | 15 Yes | 8 No |
Post New Answer View All Answers
Is arraylist faster than linkedlist?
What is difference between value and reference types in C#.NET
How to implement a singleton design pattern in c#?
What is Satellite Assemblies ?
Which .gang of four. Design pattern is shown below?
What is array and arraylist?
What is an object pool in .net?
What do you mean by sealed classes and static classes?
What operator means?
How to Install uninstall assemblies into GAC?
How to find whether the application is run from inside ide or not?
What are tuples c#?
What is concrete class in c# with example?
Which is faster dictionary or list?
List some of the basic string operation?