• 练习题


    1、输出一个长整型的变量

    public class Long
    {
       public static void main(String[] args)
          {
          long l=123456789012345l;//java中默认类型为Int型,电脑想要识别长整型需加l(或L)
          System.out.println(l);
           }

    2、输出一个单精度的小数常量

    public class Float
    {
       public static void main(String[] args)
       {  
          float f=2.4f;//java中小数默认为double型
          System.out.println(f);
       }

    3、输出一个布尔类型的变量

    public class Boolean
    {
       public static void main(String[] args)
        {
          boolean b=true;
          b=false;
          System.out.println(b);
        }

    4、强制类型转换

    public class Byte
    {
       public static void main(String[] args)
       {
          byte b=5;  //b为byte类型,并为b初始化值
          b=(byte)(b+200); //200为Int类型,与b类型不一致,需要强制转换
          System.out.println(b);
       }

    5、输出一个字符型的加法计算

    public class Char
    {
       public static void main(String[] args)
       {
          System.out.println('c'+1);
          System.out.println((char)('c'+1));//将数字Int类型转换为字符型
       }

    6、变量的溢出效果

    public class Overflow
    {
       public static void main(String[] args)
        {
          int big=0x7fffffff;
          System.out.println(big);
         }

    7、算数运算符

    import java.util.Scanner;
    public class Count
    {
       public static void main(String[] args)
       {
          Scanner input=new Scanner(System.in);//创一个对象
          System.out.println("输入一个数");
          int x=input.nextInt();//输入一个整型的数
          x=x/1000*1000;
          System.out.println("输出的x为:"+x);   
       }

  • 相关阅读:
    深度学习--文本摘要生成简介
    hive进阶 技巧
    python 库 imgaug数据增强
    评分卡模型
    spark-submit 参数总结
    H2O中的随机森林算法介绍及其项目实战(python实现)
    kafka 基本原理简介
    Xshell 服务器配置
    yapi内网部署 centos
    pm2使用 node 进程管理
  • 原文地址:https://www.cnblogs.com/kally004/p/7591396.html
Copyright © 2020-2023  润新知