2016-11-21 2 views
-1

Salut j'ai un pour chaque boucleitérer conditionnelle pour chaque

For each bkmark in bookmarks 
     If conditional statement is true 
      Insert conditional value 
      Next for 
     End if 
     Insert default value 
Next`` 

Comment faire pour la prochaine?

Répondre

1

Vous n'avez pas besoin « à côté » ici - il suffit d'ajouter un Else à votre bloc If:

For each bkmark in bookmarks 
    If conditional statement is true 
     Insert conditional value 
    Else 
     Insert default value 
    End if 
Next