Untitled
unknown
plain_text
2 years ago
1.2 kB
4
Indexable
Certainly! Here's a simple text-based "Guess the Number" game implemented in C++:
```cpp
#include <iostream>
#include <cstdlib>
#include <ctime>
int main() {
std::cout << "Welcome to the Guess the Number game!\n";
// Generate a random number between 1 and 100
srand(static_cast<unsigned int>(time(0)));
int secretNumber = rand() % 100 + 1;
int guess;
int attempts = 0;
do {
std::cout << "Enter your guess: ";
std::cin >> guess;
attempts++;
if (guess > secretNumber) {
std::cout << "Too high! Try again.\n";
} else if (guess < secretNumber) {
std::cout << "Too low! Try again.\n";
} else {
std::cout << "Congratulations! You guessed the number in " << attempts << " attempts.\n";
}
} while (guess != secretNumber);
return 0;
}
```
This is a basic example to get you started. If you're interested in game development using C#, you might want to explore Unity, a popular game development engine that utilizes C#. It offers a more comprehensive platform for creating games with graphics, user interfaces, and interactions.Editor is loading...
Leave a Comment