2
Answers

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

Photo of Sara Hajrizi

Sara Hajrizi

1y
466
1

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

Answers (2)