Write a program that prints these three lines exactly: cpp C++ Programming Lesson 1 Hello, World! Use three separate cout statements, each with << endl at the end. Start with the basic program structure from earlier.
Replace the single cout line with three lines. Make sure each string matches the target output exactly, including capitalization and punctuation. After writing the program, click run and compare output.
If spacing or text is wrong, fix your strings and run again. This problem tests whether you understand how cout and endl work together.