能夠查看當前編譯幾個程式java
方向鍵+shift :選中行數小程序
設置註釋ctrl+/工具
java輸入異常,輸入值不匹配編譯
import java.util.Scanner;class
public class HelloWorld {test
public static void main(String[] args) {
// TODO Auto-generated method stub
// System.out.println("hello,world");
//製做輸入
// Scanner in = new Scanner(System.in);
//讀取輸入的,用in讀取下一行
// System.out.println("echo:"+in.nextLine()+",what do you say?");
// System.out.println(2+3+"=2+3=");
// System.out.println("100-23="+(100-in.nextInt()));
//須要讀兩個數字
// System.out.println("100-"+in.nextInt()+"="+(100-in.nextInt()));
//讀一次數字,變量字母,數字,下劃線,首字符不能是數字,java是強類型的語言
//變量初始化
//常量
// final int amount = 100;
// int amount;
// int price=0;
//price作賦值,a=b是動做,把b賦給a,右邊提供值,左邊是接受值。
//表達式
// System.out.print("請輸入amount的值:");
// amount = in.nextInt();
// System.out.print("請輸入price的值:");
// price = in.nextInt();
// System.out.println(amount+"-"+price+"="+(amount-price));import
//身高換算工具
// int chi;
// int cun;
// float result;
// System.out.println(1.2-1.1);
// 0.09999999999999987
// System.out.print("國外身高換算國內身高");
// Scanner in = new Scanner(System.in);
// System.out.print("請輸入的你的英尺數:");
// chi = in.nextInt();
// System.out.print("請輸入你的英寸數:");
// cun = in.nextInt();
// System.out.println("你輸入的是"+chi+"尺"+cun+"寸");
// result = ((chi+cun)/12.0)*0.3048;
// System.out.println("換算國內身高爲:"+((chi+cun/12.0)*0.3048));
}變量
}float
import java.util.Scanner;程序
public class test1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int chi;
int cun;
System.out.print("國外身高換算國內身高");
Scanner in = new Scanner(System.in);
System.out.print("請輸入的你的英尺數:");
chi = in.nextInt();
System.out.print("請輸入你的英寸數:");
cun = in.nextInt();
System.out.println("你輸入的是"+chi+"尺"+cun+"寸");
System.out.println("換算國內身高爲:"+((int)(((chi+cun/12.0)*0.3048)*100))+"釐米");
}
}
小程序