大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
常用的输入语句是:
崆峒网站制作公司哪家好,找成都创新互联公司!从网页设计、网站建设、微信开发、APP开发、成都响应式网站建设公司等网站项目制作,到程序开发,运营维护。成都创新互联公司成立于2013年到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选成都创新互联公司。
输入字符串:new Scanner(System.in).next();
输入整数:new Scanner(System.in).nextInt();
输入小数:new Scanner(System.in).nextDouble();
常用的输出语句:
换行输出: System.out.println(变量或字符串);
非换行输出: System.out.print(变量或字符串);
换行输出错误提示(默认是红字):System.err.println(变量或字符串);
不换行输出错误提示(默认是红字): System.err.print(变量或字符串));
!doctypehtml
html
head
metacharset="UTF-8"
titleDocument/title
/head
body
buttononclick="mal()"第一种:alert/button
buttononclick="mpro()"第二种:prompt/button
buttononclick="mcon()"第三种:confirm/button
script
functionmal(){
alert('这是一个普通的提示框');
}
functionmpro(){
varval=prompt('这是一个可输入的提示框','这个参数为输入框默认值,可以不填哦');
//prompt会把输入框的值返回给你
}
functionmcon(){
varboo=confirm('这是一个可选择的提示框,3种提示方式,学会了吗?')
//confirm会返回你选择的选项,然后可以依据选择执行逻辑
if(boo){
alert('学会了,真聪明');
}else{
alert('再来一遍吧')
}
}
/script
/body
/html
import java.awt.*;
import java.awt.event.*;
public class TestTextField {
public static void main(String[] args) {
MyTestField mtf = new MyTestField();
}
}
class MyTestField extends Frame {
TextField tf1,tf2;
MyTestField() {
super("test");
tf1 = new TextField(10);
tf2 = new TextField(10);
Button b1 = new Button("确定");
b1.addActionListener(new Monitor());
Label lb1 = new Label("输入");
Label lb2 = new Label("输出");
add(lb1);add(tf1);add(b1);add(lb2);add(tf2);
pack();
setLayout(new FlowLayout());
setSize(200,200);
setVisible(true);
}
class Monitor implements ActionListener {
public void actionPerformed(ActionEvent e) {
tf2.setText(tf1.getText());
tf1.setText("");
}
}
}