void setup() {
Serial.begin(9600);
for(int i=0; i<=10; i++){
if(i== 5){
continue;
}
Serial.println(i);
}
Serial.println("End of the for loop");
}
void loop() {
// put your main code here, to run repeatedly:
}
void setup() {
Serial.begin(9600);
for(int i=0; i<=10; i++){
if(i== 5){
continue;
}
Serial.println(i);
}
Serial.println("End of the for loop");
}
void loop() {
// put your main code here, to run repeatedly:
}