Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace feleviFeladat
- {
- class Cd
- {
- int[] szamok = new int[10];
- public int[] Szamok
- {
- get { return szamok; }
- }
- static Random rand = new Random();
- public Cd()
- {
- for (int i = 0; i < szamok.Length; i++)
- {
- szamok[i] = rand.Next(120, 481);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement