Home /
Expert Answers /
Computer Science /
challenge-activity-2-15-3-may-someone-help-me-complete-this-problem-jump-to-level-1-read-the-st-pa824
(Solved): Challenge Activity 2.15.3 May someone help me complete this problem?
Jump to level 1 Read the st ...
Challenge Activity 2.15.3 May someone help me complete this problem?
Jump to level 1 Read the string variables userName and userAddress from input, assuming that the name is a single word and the address contains multiple words. Ex: If the input is Dax 2345 Second Avenue, then the output is: Dax 2345 Second Avenue 123456789101112131415? #include <iostream> #include ? string> using namespace std; int main( ) { string userName; string userAddress; ?? Your code goes here */ cout ?< userName << endl; cout ?< userAddress << endl; return 0;?