常用的輸入語(yǔ)句是:
崆峒網(wǎng)站制作公司哪家好,找成都創(chuàng)新互聯(lián)公司!從網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營(yíng)維護(hù)。成都創(chuàng)新互聯(lián)公司成立于2013年到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來(lái)保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選成都創(chuàng)新互聯(lián)公司。
輸入字符串:new Scanner(System.in).next();
輸入整數(shù):new Scanner(System.in).nextInt();
輸入小數(shù):new Scanner(System.in).nextDouble();
常用的輸出語(yǔ)句:
換行輸出: System.out.println(變量或字符串);
非換行輸出: System.out.print(變量或字符串);
換行輸出錯(cuò)誤提示(默認(rèn)是紅字):System.err.println(變量或字符串);
不換行輸出錯(cuò)誤提示(默認(rèn)是紅字): 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('這是一個(gè)普通的提示框');
}
functionmpro(){
varval=prompt('這是一個(gè)可輸入的提示框','這個(gè)參數(shù)為輸入框默認(rèn)值,可以不填哦');
//prompt會(huì)把輸入框的值返回給你
}
functionmcon(){
varboo=confirm('這是一個(gè)可選擇的提示框,3種提示方式,學(xué)會(huì)了嗎?')
//confirm會(huì)返回你選擇的選項(xiàng),然后可以依據(jù)選擇執(zhí)行邏輯
if(boo){
alert('學(xué)會(huì)了,真聰明');
}else{
alert('再來(lái)一遍吧')
}
}
/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("");
}
}
}