Viewing 1 to 2 of 2 items
Tag Archives: if

Basic Control Flow Continued

By this time you should be familiar with the basics behind If and Else if statements. Below you’ll see more examples and more ways to use Control Flow in your programming. 1. You’ll learn more advanced ways of manipulating control flow in your program. 2. You’ll also learn how to declare and initialize boolean variables.  Full Article…

0

Basic Control Flow

In the following tutorial, you’ll learn how to use if, and if-else statements. They are useful for deciding on what lines of code to execute based on values of previous variables in your program. The If Statement An example is as follows int x; if ( condition ) x = 50; //If condition returns TRUE,  Full Article…

0