2
Answers

Write a program, which generates and prints on the console 10 random n

Sara Hajrizi

Sara Hajrizi

1y
429
1

Use the class Random. You may generate random numbers in the range [100, 200] by calling Random.Next(100, 201).

Answers (2)