Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 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 Vezbanje
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13.  
  14. string unos = "";
  15. string count = Razmaci(unos);
  16. Console.WriteLine($"Broj razmaka je: {count.Count(Char.IsWhiteSpace)}");
  17. Console.ReadLine();
  18.  
  19. }
  20.  
  21.  
  22. public static string Razmaci(string unos)
  23. {
  24. Console.Write("Unesite recenicu: ");
  25. string recenica = Console.ReadLine();
  26.  
  27. return recenica;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement