Operatoret logjike

 

Keto operatore perdoren per te kombinuar disa kushte logjike njeheresh per te krijuar nje kusht me kompleks.

 

- Operatoret logjike jane and ( && ), or. ( || ) dhe not ( ! )

Operatori and && kontrollon disa kushte logjike njeheresh. Nese te gjithe kushtet jane true , perfundimi eshte true perndryshe perfundimi del false.

 

Shembull:

if (mosha > 20 && mosha <40)

cout<< “Moshe mesatare”<<endl;

 

Operatori or || kontrollon disa kushte logjike njeheresh. Nese te pakten nje nga kushtet eshte true atehere edhe rezultati del true.

if(mesatarja_semestrit>=9 || mesatarja_perfundimtare>=9)

cout<<”Nxenes shume i mire”<<endl;

 

!  Operatori not kundershton nje shprehje logjike

Psh !(4>5) jep 4<= 5 pra true.