import
javax.swing.JOptionPane;
public
class
NumerosPell {
public
static
void
main(String[] args) {
String strElementos = JOptionPane.showInputDialog(
null
,
"Introduce el número de elementos a mostrar: "
,
"Números Pell"
, JOptionPane.QUESTION_MESSAGE);
int
elementos = Integer.parseInt(strElementos);
System.out.printf(
"%n\tNúmeros de Pell%n"
);
System.out.println(
"***********************************"
);
int
cont =
0
;
int
n1=
1
, n2=
0
, pell;
for
(
int
i=
0
; i<elementos; i++) {
pell = n1 +
2
* n2;
System.out.print(pell +
"\t"
);
n1 = n2;
n2 = pell;
cont++;
if
(cont==
5
){
System.out.println();
cont=
0
;
}
}
}
}
0 Comentarios