Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. static string DodajTekst(string tekst)
  2. {
  3. string s_tekst;
  4.  
  5.  
  6. while (true)
  7. {
  8. Console.WriteLine(tekst);
  9. s_tekst = Console.ReadLine();
  10.  
  11. for(int i = 0; i <= (s_tekst.Length - 1); i++)
  12. {
  13. if (char.IsNumber(s_tekst[i]) == true)
  14. {
  15. Console.WriteLine("Wprowadzona wartosc jest niepoprawna!");
  16. continue;
  17.  
  18. }
  19.  
  20. }
  21. return s_tekest;
  22. }
  23.  
  24.  
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement