PROGRAMMAZIONE
BASIC
http://programmazione.html.it/guide/lezione/1382/i-tipi-di-dati/
INIZIO
STRUTTURE
RIPETITIVE
N
RT = 0
STRUTTURE DI
SELEZIONE
CALCOLO DI
RESISTENZE IN
SERIE
I=1
R
RT = RT + R
I=N
RT
FINE
I=I+1
Codice
Eseguibile con
Just Basic
CALCOLO DI
RESISTENZE IN
SERIE
RT=0
I=1
input N
for I=1 to N
input R
RT=RT+R
next I
print RT
Scarica

programmazione_basic