Section courante

A propos

Section administrative du site

IF

Si
ST BASIC

Syntaxe

IF logicalexpression THEN statement :statement [ELSE statement :statement]

Description

Cette instruction permet d'effectuer un test conditionnel.

Remarques

Exemples

Voici des exemples typiques de l'utilisation de l'instruction IF :

  1. IF X=Y THEN PRINT A:GOTO 250
  2. ELSE GOTO 30

Voici un autre exemple :

  1. 5 A%=5
  2. 10 IF A%>3 THEN FOR K%=1 TO 5:PRINT A%*K%:NEXT ELSE FOR K%=1 TO 5:PRINT A%/K%:NEXT
  3. RUN

on obtiendra le résultat suivant :

5
10
15
20
25
OK

Voici encore un autre exemple :

  1. 10 FOR X=1 TO 5:IF X<3 THEN PRINT X*X:NEXT:PRINT "FAIT"
  2. RUN

on obtiendra le résultat suivant :

1
4
FAIT


Dernière mise à jour : Vendredi, le 7 Août 2020