Caricamento...
type vettore is array(1..4) of integer;
v : vettore := (1,2,3,4);
put("Valore 1:");
put(v(1));newline;
put("Valore 2:");
put(v(2));newline;
put("Valore 3:");
put(v(3));newline;
put("Valore 4:");
put(v(4));newline;
Lascia un commento
Copyright © 2005 - 2010 :: ianaz - created by Silvio Rainoldi