From the course: C++ IDE Overview

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Solution: CodeLite

Solution: CodeLite

From the course: C++ IDE Overview

Start my 1-month free trial

Solution: CodeLite

(tinkly music) - [Instructor] Welcome back. Did you successfully solve the challenge? Let me show you my solution. Close any open source files, collapse any expanded projects. Now we right-click on my workspace, new, new project. We're going to take a simple executable G plus plus, next. We're going to call this dynamic, since we want it to dynamically read the test scores from the user. Click next, validate our tool chain, click finish. Once the project has been created, we double-click it to make it the default. Now we open up the source, double-click to main CCP, I don't need any of the generated code, so I'm going to do a Control + A, and then press the Delete key to get rid of it all. At the top of the source file, I will type pound sign include, Space, iostream, then I'll do using, Tab, namespace, and then STD semicolon. Now I create the main function, int main, open and closed parentheses, open and closed curly braces. Now we go ahead and create our variables, counter, and it's…

Contents