Joined
Last Seen
-1 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 3
- Posts with Downvotes
- 1
- Downvoting Members
- 3
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: OKAY YOU NOOBS!!!!! HERE IS A MUCH SIMPLER THING TO DO!!!! #include <iostream> #include <cstdlib> using namespace std; int main() { int randomNumber = rand() % 100 + 1; // This would randomize the number from 1-100 cout << "The Random Number Is: " << randomNumber << endl; system("pause"); return … |
The End.