Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PersonalTitles
- {
- class Program
- {
- public static void Main()
- {
- double age = double.Parse(Console.ReadLine());
- string sex = Console.ReadLine();
- if (age >= 16 && sex == "m")
- {
- Console.WriteLine("Mr.");
- }
- else if (age < 16 && sex == "m")
- {
- Console.WriteLine("Master");
- }
- else if (age >= 16 && sex == "f")
- {
- Console.WriteLine("Ms.");
- }
- else if (age < 16 && sex == "f")
- {
- Console.WriteLine("Miss");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement