namespace ConsoleApplication3
public static string ProgWords(string str)
var strArray = str.Split(' ');
for (int i = 0; i < strArray.Length; i++)
switch (strArray[i].Trim().ToUpper())
return "JavaScript is not allowed";
return "MySql is not allowed";
return "Html is not allowed";
return "CSS is not allowed";
return "Clear nothing unallowed";
public static void Main(string[] args)
Console.WriteLine(ProgWords("I love javascript"));