2.9 LAB: Input: Welcome message Write a program that takes a first name as the input, and outputs a welcome messa Ex: If
Posted: Fri Jul 08, 2022 6:35 am
2.9 LAB: Input: Welcome message Write a program that takes a first name as the input, and outputs a welcome messa Ex: If the input is: Pat the output is: Hello Pat, and welcome to CS Online! 397536.2648356.q13zay7 LAB ACTIVITY 1 #include <iostream> 2 #include <string> 2.9.1: LAB: Input: Welcome message 3 using namespace std; 4 5 int main() 6 7890 10 11 string userName; cin >> userName; /* Type your code here. return 0; main.cpp