Ayuda JOptionPane?
Publicado por QRed (1 intervención) el 16/03/2018 00:34:59
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import javax.swing.JOptionPane;
public class serie {
public static void main(String[] args) {
StringBuffer buf= new StringBuffer();
Integer inicial=1;
Integer finale=11;
for(Integer cont=inicial;cont<finale;cont++) {
buf.append(cont.toString()+
System.getProperty("line separator"));
}
JOptionPane.showMessageDialog(null, "La serie del 1 al 10 es:" +buf.toString(), "serie", JOptionPane.PLAIN_MESSAGE);;
}
}
La serie del 1 al 10 es:1null2null3null4null5null6null7null8null9null10null
No se como quitarle el null
Valora esta pregunta
0