作业3
/** * 需求:基本练习 * 思路:类型的一直 * * 步骤:略 */ public class Demo_1{ public static void main(String[] arge) { long l=123456789012345l;//长整型变量 float f=2.4f;//单精度的小数常量 boolean b=true; b=false;//布尔类型的变量 byte c=5;//5是int型 这个叫系统默认强制转换 c=(byte)(c+200);//结果为负数,因为出过了取值范围 int i=Integer.MAX_VALUE+1000;//变量的溢出 System.out.println(l); System.out.println(f); System.out.println(b); System.out.println(c); System.out.println((char)('a'+6));//字符型的加法计算 System.out.println((char)('你'+5)); System.out.println(i); System.out.println(800/2*9/1.6/8+2-1);//算术运算符+-*/ } }

This moment will nap, you will have a dream; but this moment study, you will interpret a dream.
浙公网安备 33010602011771号