C ++ istruzione if ... else
Un if l'istruzione può essere seguita da un opzionale else istruzione, che viene eseguita quando l'espressione booleana è falsa.
Sintassi
La sintassi di un'istruzione if ... else in C ++ è -
if(boolean_expression) {
// statement(s) will execute if the boolean expression is true
} else {
// statement(s) will execute if the boolean expression is false
}
Se l'espressione booleana restituisce true, poi il if block di codice verrà eseguito, altrimenti else block di codice verrà eseguito.
Diagramma di flusso
Esempio
#include <iostream>
using namespace std;
int main () {
// local variable declaration:
int a = 100;
// check the boolean condition
if( a < 20 ) {
// if condition is true then print the following
cout << "a is less than 20;" << endl;
} else {
// if condition is false then print the following
cout << "a is not less than 20;" << endl;
}
cout << "value of a is : " << a << endl;
return 0;
}
Quando il codice precedente viene compilato ed eseguito, produce il seguente risultato:
a is not less than 20;
value of a is : 100
if ... else if ... else Istruzione
Un if l'istruzione può essere seguita da un opzionale else if...else istruzione, che è molto utile per testare varie condizioni usando l'istruzione if ... else if.
Quando si usano le istruzioni if, else if, else ci sono pochi punti da tenere a mente.
Un if può avere zero o un altro e deve venire dopo qualsiasi altro se.
Un if può avere da zero a molti altri se e devono venire prima dell'altro.
Una volta che un altro se ha successo, nessuno degli altri se rimanenti o altri sarà testato.
Sintassi
La sintassi di un'istruzione if ... else if ... else in C ++ è -
if(boolean_expression 1) {
// Executes when the boolean expression 1 is true
} else if( boolean_expression 2) {
// Executes when the boolean expression 2 is true
} else if( boolean_expression 3) {
// Executes when the boolean expression 3 is true
} else {
// executes when the none of the above condition is true.
}
Esempio
#include <iostream>
using namespace std;
int main () {
// local variable declaration:
int a = 100;
// check the boolean condition
if( a == 10 ) {
// if condition is true then print the following
cout << "Value of a is 10" << endl;
} else if( a == 20 ) {
// if else if condition is true
cout << "Value of a is 20" << endl;
} else if( a == 30 ) {
// if else if condition is true
cout << "Value of a is 30" << endl;
} else {
// if none of the conditions is true
cout << "Value of a is not matching" << endl;
}
cout << "Exact value of a is : " << a << endl;
return 0;
}
Quando il codice precedente viene compilato ed eseguito, produce il seguente risultato:
Value of a is not matching
Exact value of a is : 100