Hi, I wanted to try to write a game in which I had to guess the hidden word, the question: how? Here is an example code:
#include <iostream> #include <string> #include <cstdlib> #include <ctime> using namespace std; int main() { string s; cin >> s; int a = s.size(); return 0; } Well, and then I do not know)