⑴ 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);
}
}