IanosStefanCristian

2. Count D's

Mar 9th, 2021 (edited)
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace EdabitChallenges
  8. {
  9. class Program
  10. {
  11.  
  12. static void Main(string[] args)
  13. {
  14. string phrase = Console.ReadLine();
  15. Console.WriteLine(phrase.Split('D', 'd').Length-1);
  16. Console.ReadLine();
  17. }
  18. }
  19.  
Add Comment
Please, Sign In to add comment