java練習---6
阿新 • • 發佈:2017-09-24
小數 source 2.4 enter oat boolean 算術 int ner
1 //程序員:羅元昊 2017.9.24 2 import java.util.Scanner; 3 public class L { 4 5 public static void main(String[] args) { 6 long a ; //練習題1:輸出一個長整型的變量 123456789012345 7 a=123456789012345l; 8 System.out.println(a); 9 10 float b=2.4f; //練習題2:輸出一個單精度的小數常量 2.4 11 System.out.println(b); 12 13 boolean c=true; //練習題3:輸出一個布爾類型的變量 14 System.out.println(c); 15 c=false; 16 System.out.println(c); 17 18 byte d=3; //練習題4:強制類型轉換 19 d=(byte)(b+200);20 System.out.println(d); 21 22 System.out.println((char)(‘a‘+1));//練習題5:輸出1個字符型的加法計算 23 System.out.println((char)(‘你‘+1)); 24 25 int e=Integer.MAX_VALUE+1; //練習題6:int 也對應著一個類,Integer 演示變量的溢出效果 26 System.out.println(e); 27 28@SuppressWarnings("resource") //練習題7:算術運算符+-*/ 29 Scanner input=new Scanner(System.in); 30 double f; 31 System.out.println("Enter the x "); 32 f = Double.valueOf(input.nextDouble()); 33 f=f/1000*1000; 34 System.out.println("The calculation result is " + f); 35 } 36 37 }
java練習---6