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 issue1
- {
- class Program
- {
- static void Main(string[] args)
- {
- double age = double.Parse(Console.ReadLine());
- string gender = Console.ReadLine();
- if (age<16)
- {
- if (gender=="m")
- {
- Console.WriteLine("Master");
- }
- else
- {
- Console.WriteLine("Miss");
- }
- }
- else
- {
- if(gender=="m")
- {
- Console.WriteLine("Mr.");
- }
- else
- {
- Console.WriteLine("Ms.");
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment