fork(2) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string sentence = "write LINQ queries to do the following";
  8. int nLastWord = sentence.LastIndexOf(' ');
  9. string strLastWord = sentence.Substring(nLastWord + 1,
  10. sentence.Length - nLastWord - 1).ToUpper();
  11.  
  12. Console.WriteLine(strLastWord);
  13. }
  14. }
Success #stdin #stdout 0.03s 23912KB
stdin
Standard input is empty
stdout
FOLLOWING