Loops Say you were a programmer for a major university who needed to create a program to input 3000 grades. You could sit there for…
Loops Say you were a programmer for a major university who needed to create a program to input 3000 grades. You could sit there for…
If statement There are times when you want the program to respond differently to different events. Say for example you wanted to display a certain…
Input Input is used to take information from the person using the program. In C++ we use a cin statement that we got from the…
Comments Comments are pivotal for C++ and every other programming language. They allow you to leave remarks to yourself and anyone else who may read…
At this point you should have a blank file on the screen, with no code in it. Before you can actually write any code you…
C++ is a multi-paradigm programming language that supports object oriented programming (OOP) and other forms of pogramming as well. It was derived from the C…
C++ is a very powerful programming language. It’s been used for operating system development, game development, applications, etc. These tutorials will teach you the basics…
Objects Say we have a ball. A ball is an object. A ball has properties such as color, size, weight. You can have actions associated…
Modules Say we had a program that gave directions to 3 places, a video store, a bank, and the post office. Now say that the…
ARRAYS When doing variables in loops, sometimes we may want to use the same variable name over and over again. Say you wanted to have…
DO LOOPS Up until this point if we wanted to print out a variable, or do a calculation we would need to write it over…
Input/Output Every language has an input and an output command, or commands. You take input from the keyboard or from a file and you can…