Answers for "random from 1 to 10 c++"

C++
7

c++ random number between 1 and 10

cout << (rand() % 10) + 1<<" ";
Posted by: Guest on November-22-2020

Browse Popular Code Answers by Language