mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-12 09:50:11 -05:00
17 lines
270 B
C++
17 lines
270 B
C++
#include <iostream>
|
|
#include <string>
|
|
|
|
int main()
|
|
{
|
|
std::string name = getName();
|
|
std::cout << "Hello, " << name << "!" << std::endl;
|
|
}
|
|
|
|
std::string getName()
|
|
{
|
|
std::string name;
|
|
std::cout << "Enter your name: ";
|
|
std::cin >> name;
|
|
return name;
|
|
}
|