From the course: C++ IDE Overview

Unlock this course with a free trial

Join today to access over 25,300 courses taught by industry experts.

Solution: Eclipse

Solution: Eclipse

- [Instructor] Hi. Were you successful with your challenge? Here is my solution to it. If you have an open project, please close it. So we're going to go right click, close project, then we're going to go file, new, CC++ project, C++ manage build, next. We're going to call this project "Dynamic" since we're dynamically reading test scores from the user. It is going to be a hello world C++ Cyguin. And we're going to click finish. Then I'm going to do a control A to select all of this text. And press the delete key to get rid of it all. And then I'll start typing in my program. So it's include, IL stream, so that we can read from the keyboard and print to the screen. Using name space. Next we create our main function. By tradition, C and C++ programs return zero when they have no issues. So we're going to say return zero. Then we create three variables auto counter equal zero. Auto keeps track of the number of test scores. Total scores equal zero point zero. Total scores holds their…

Contents