I have a problem in the performance of my program

        digitalWrite(5, LOW );
        delay(200);
    }
    else 
        digitalWrite(13, LOW );
    digitalWrite(11, LOW );

Looks like you forget a set of brackets around your 'else' clause so only one line is part of the 'else'.