第3天

一、数据类型

分为基本数据类型以及引用数据类型。

 

基本数据类型的输出。

package com.sxt;

public class 数据类型 {
public static void main(String[] args) {
    byte a=28;
    short b=17777;
    int c=10000;
    long d=999999999L;//注意这里需要添加L后缀来表示数据类型。推荐使用大写L,以便更好地分清。
    float e=3.532f;//添加f后缀。
    double f=3333333.666666;
    boolean g=true;
    System.out.println(a);
    System.out.println(b);
    System.out.println(c);
    System.out.println(d);
    System.out.println(e);
    System.out.println(f);
    System.out.println(g);
}
}

二、标识符。

 

 三、键盘录入。

 

 以上方式只能接收整数。

posted @ 2023-07-03 12:28  七安。  阅读(45)  评论(0编辑  收藏  举报