Ad Liang
@AdLiang1
@AdCharity @TaylorLiang
Just a cool little program that ummm...
HACKS
you or not lol...
Hope you like it it is my first post :)
fake code off hacker typer
C++
Is there any way to detect a keypress with html and js?
For example, if I press a letter a html element disappears...
How do you allow a user input to have spaces in c++
I have tried
std::string name;
std::cout << "Enter your name: ";
std::getline(std::cin, name);
mwilki7 When you say you've tried it, did you get any compiler errors? What was the output?3 years ago
RomeroSchwarz Try this:
#include
#include
using namespace std;
string MyString;
std::cin >> My String;
> If this post helped, mark it as the answer3 years ago