Continue statment program.

in #programming7 years ago

Program body

# include <iostream>
using namespace std;
void wolf();
int main(){
int a =1;
while (a <=5){
a ++;
if(a ==3){
    continue;
    a ++;
}
cout<<a <<endl;
}
wolf();
}
void wolf(){
int x [2][2]{{
90,25
},{
10,5
}
};
cout <<x[0][0]<<endl;
cout <<x[1][1]<<endl;
}

Made in code blcoks (c++)

Source

Enjoy guys


Coin Marketplace

STEEM 0.19
TRX 0.25
JST 0.037
BTC 96709.35
ETH 3340.46
USDT 1.00
SBD 3.16