Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. static void Main(string[] args)
  2. {
  3. for (int i = 0; i < 10; i++)
  4. {
  5. Losuj();
  6. }
  7. }
  8.  
  9. static void Losuj()
  10. {
  11. Random rnd = new Random();
  12. int x = rnd.Next(1,11);
  13. Console.WriteLine(x);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement