Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

package loop;

public class bufferedreader {

public static void main(String[]args) {


for (int x=1; x<=15; x++)

System.out.print(x + " ");

}
package loop;

import javax.swing.JOptionPane;

public class joptionpane {

public static void main(String[]args) {

for (int x=1; x<=15; x++)

JOptionPane.showInputDialog(x + " ");

You might also like