请完善程序(程序文件名:Java_1.java)并进行调试。请在下画线处填入正确内容,然后删除下画线。请勿删除注释行和其他已有的语句内容。
题目要求:
阅读Java_1.java程序,然后完成程序并运行,得到结果如下图所示。

最后按确定键结束运行。
源程序:
//用目标标记的continue语句实例
import javax.swing.JOptionPane;
public class Java_1
public static void main(String args[])
String output="";
nextRow;
for(int row=1; row<= (1) ; row++)
output+="\n";
for(int cohmn=1; column<=10; column++)
if(column>row)continue (2) ;
output+="*";
JOptionPane.showMessageDialog(null, output, "Testing continue with a label",JOptionPane.INFORMATION_MESSAGE);
System.exit(0);