iTech College - Internet Technology, Online Education, E-Learning, Technician Training, Tech Tutorials, Distance Education, Virtual Learning C++ Course: The If Statement and The Switch Statement - www.itechcollege.com C++ Course: The If Statement and The Switch Statement - www.itechcollege.com
Free Courses
HTML
JavaScript
CSS
ASP
PHP
JSP
C++
ASP.NET
SQL
AJAX
FTP
XML

courses > C++ > The If Statement and The Switch Statement

The if statement & The switch statement

An if statement has the following form:

if (condition)
  {
  // code to execute if condition is true
  }
  else 
  {
  // code to execute if condition is false
}

Here is an example:

#include <iostream.h>

int main() {
int a = 5;
int b = 7;
  
  if (a> b) {
  cout << "a is greater than b" << endl;
  }
  else {
  cout << "a is less than b" << endl;
  }
  
  return 0;
}

An switch statement allows you to compound a group of if statements. An switch statement has the following syntax:

switch(integer_val){
  case val_1:
  // code to execute if integer_val is val_1
  break;
  ...
  case val_n:
  // code to execute if integer_val is val_n
  break;
  default:
  // code to execute if integer_val is none of the above
}
Let's see an example:
switch (color) {
	case 1:
		cout << "red" << endl;
		break;
	case 2:
		cout << "blue" << endl;
		break;
	default:
		cout << "white" << endl;
}


  Back to Index Page
 Next Page:  

Include a File and Main Function
Output and Input Data
Variables
Arrays
Operators
The If Statement and The Switch Statement
Loops
Function
Read and Write a Text File
Using Database MySQL
Drawing and Graphics


Online Education, Online Training for Your Job, Distance Education, E-learning Programs for Your Career!Online Colleges, Online Universities, E-learning & Distance Education for Your Career! Easy Job Training & Online Courses.


   Email A Friend  
 
Earn Online Degree
for Your Job
I found a job after I earned an online degree!
Online classes for finding a Job. Online College, Online University, Degrees, E-learning school, online certificate Earn your
online degree now!
Online Training
for Good Job
Why I work so hard but earn so little? Why I cannot find a high paying job?
Online training for a Good Jobs. Online Degree, E-learning school, online certificate Go to
online school now!

Copyright ©2024, itechcollege.com. All rights reserved
iTechCollege | About iTech | Contact iTech