Remote-processing CAMBASIC Instrukcja Użytkownika Strona 63

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 208
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 62
Commands - 30
DEC & DECF
Statements
SYNTAX: DEC variable
DEC F var iable
PURPOSE: To decrement a variable by one (DEC) or four (DEC F).
REMARK S: This is a fast way to decrement a simple or array variable.
A = A– 1 slow
DEC A fast
A = A– 4 slow
DECF A fast
DEC executes more than twice as fast as the statement it replaces. Valid for simple and array
variables.
RELATED: INC, INCF
EXAMPLE: 10 A = 4
20 DEC A
30 PRINT A
40 DECF A
50 PRINT A
RUN
3
–1
ERROR: < Expected variable> if parameter is not a variable
Przeglądanie stron 62
1 2 ... 58 59 60 61 62 63 64 65 66 67 68 ... 207 208

Komentarze do niniejszej Instrukcji

Brak uwag