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 _6.Foreign_Languages
- {
- class Program
- {
- static void Main(string[] args)
- {
- string Country = Console.ReadLine();
- if(Country== "England"|| Country == "USA")
- {
- Console.WriteLine("English");
- }
- else if(Country == "Spain" || Country == "Argentina" || Country == "Mexico")
- {
- Console.WriteLine("Spanish");
- }
- else
- {
- Console.WriteLine("unknown");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment