Advertisement
chipsi2

Untitled

Nov 2nd, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. //1
  2. public static Random rnd = new Random();
  3. public static string[] Students (int num)
  4. {
  5. string[] v = new string[num];
  6. for (int i=0;i<num;i++)
  7. {
  8. v[i] = Console.ReadLine();
  9. }
  10. return v;
  11. }
  12. static void Main(string[] args)
  13. {
  14. //{
  15. // Node<int> p1 = new Node<int>(int.Parse(Console.ReadLine()));
  16. // while (p1.GetValue()!=0)
  17. // {
  18. // Node<int> p2 = new Node<int>(int.Parse(Console.ReadLine()),p1);
  19. // p1 = p2;
  20.  
  21. // }
  22. // Console.WriteLine(p1);
  23. //2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement