Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. static void Main(string[] args)
  2. {
  3. int[] tab1 = { 4, 5, 5, 6, 7 };
  4. char[] tab2 = {'a','b','c','d'};
  5. string tekst1 = "AniaJestZeWsi";
  6.  
  7. Console.WriteLine(Operacje.czyIstnieje(tab2, 'a'));
  8. Console.WriteLine(Operacje.czyIstnieje(tab1, 4));
  9.  
  10. Console.WriteLine(Operacje.czyIstnieje(tekst1,'x'));
  11. Console.WriteLine(Operacje.ZwocTekst(tekst1));
  12.  
  13. Console.ReadKey();
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement