import javax.swing.JOptionPane; //JOptionPane为系统所提供对话框的类,*加载包内所有内容,加载时间较长。
public class test{
public static void main (String[] args){
final double PI=3.141592654; //final 将PI变为常量,无法对其做更改,常量通常所有字母大写。
JOptionPane.showMessageDialog(null,"do"); //显示消息框,位置居中,内容“do”
String Name = JOptionPane.showInputDialog(null," 请输入你的姓名");//显示一个输入框,使用一个变量来记录输入的内容。便于其他内容调用该变量。
JOptionPane.showMessageDialog(null,"welcome,"+Name);
}
}
public class jack{
public static void main(String[] args){
String weigh=JOptionPane.showInputDialog(null,"请输入宽");
String longer=JOptionPane.showInputDialog(null,"请输入长");
//将字符串转化为整型。
int W = Integer.parseInt(weigh);//Integer(系统提供的的一种方法)parseInt(Integer系统提供的一种方法)
int L = Integer.parseInt(longer);
JOptionPane.showMessageDialog(null,"长方形面积为:"+W*L);
}
}
想要快速的写出代码,只有一个办法就是多多的写。先照搬,让后再模仿,最后就是自己原创。在没有一定的积累想要原创几乎是不可能的。