⑴ java怎样实现像易语言那样的可视化编程
找本J2SE的书本来看看,很具体的介绍java如何利用其强大的类库以及GUI组件来实现可视化编程的。
⑵ Java怎样写出Windows窗口化程序
import javax.swing.JOptionPane;
class Test {
public static long function(int n)throws Exception{
if(n==0){
return 1;
}else{
return n*function(n-1);
}
}
public static void main(String[] args)throws Exception {
String whole=JOptionPane.showInputDialog("请输入一个整数!");
int n=0;
long l=0;
try{
n=Integer.parseInt(whole);
if(n<1)
throw new NumberFormatException();
}catch(NumberFormatException e){
JOptionPane.showMessageDialog(null, "您输入的不是一个正整数!");
}
l= function(n);
JOptionPane.showMessageDialog(null,l);
}
}