Instruksionet break dhe continue
TEMA: Instruksionet break; dhe continue; fq 185
Instruksionet break; dhe continue; perdoren per te nderruar rrjedhen e ekzekutimit ne nje program.
Instruksioni break; perdoret ne strukturat switch, while, for, do while.
Ky instruksion ben te mundur daljen e menjehershme nga strukturat ku perdoret.
Instruksioni continue; perdoret ne strukturat while, for, do while.
Ky instruksion anashkalon ( nuk i ekzekuton ) instruksionet e mbetura ne hapin aktual te ciklit dhe vazhdon me hapin pasardhes te ciklit.
Shembuj te instruksioneve break dhe continue.
#include <iostream>
using namespace std;
int main()
{ int x;
for ( x = 1; x <= 10; x++ ) {
if ( x == 5 )
break;
cout << x << " ";
}
return 0;
}
Printon:
1 2 3 4
#include <iostream>
using namespace std;
int main()
{ int x;
for ( x = 1; x <= 10; x++ ) {
if ( x == 5 )
continue;
cout << x << " ";
}
return 0;
}
Printon:
1 2 3 4 6 7 8 9 10