Generation

generate functionWed, 19 Jul 2023

Variable nombre

#include <iostream> using namespace std; int main() { string name; cout << "What is your name? "; getline (cin, name); cout << "Hello, " << name << "!\n"; }

Want to kickstart your project?Use the new AI Studio to create your code