zoukankan      html  css  js  c++  java
  • 9.18作业 杨月(1636050091)练习题

    1.

    /*
    程序员:杨月
    1.需求:输出一个长整型
    */
    public class Long
    {
    public static void main(String[] args)
    {
    long l=123456789;
    System.out.println("长整型变量为:"+l);
    }
    }

    2.

    /*
    程序员:杨月
    1.需求:输出一个单精度常量
    */
    public class Float
    {
    public static void main(String[] args)
    {
    float f=(float)2.4;
    System.out.println("单精度常量:"+f);
    }
    }

    3.

    /*
    程序员:杨月
    1.需求:输出一个布尔型
    */
    public class Boolean
    {
    public static void main(String[] args)
    {
    boolean b=true;
    b=false;
    System.out.println("输出一个布尔型:"+b);
    }
    }

    4.

    /*
    程序员:杨月
    1.需求:强制转换
    */
    public class Byte
    {
    public static void main(String[] args)
    {
    byte b=3;
    b=(byte)(b+200);
    System.out.println("强制转换:"+b);
    }
    }

    5.

    /*
    程序员:杨月
    1.需求:字符型加法运算
    */
    public class CharSum
    {
    public static void main(String[] args)
    {
    System.out.println('a'+1);
    System.out.println((char)('a'+1));
    System.out.println((char)('你'+1));

    }

    }

    6.

    /*
    程序员:杨月

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

    7.

    /*
    程序员:杨月
    1.需求:就计算啊
    */
    public class SumChar
    {
    public static void main(String[] args)
    {
    int x=20;
    x=x/2*100;
    System.out.println("出来:"+x);
    }
    }

  • 相关阅读:
    uboot编译配置过程
    APUE-数据库函数库
    值得推荐的C/C++框架和库 (真的很强大)
    ubuntu12.04图形界面与命令行界面切换
    ubuntu14.04 升级gcc的方法
    4. H5+css3
    3,css 内容
    2. 浏览器兼容性问题
    1,http协议
    页面添加水印
  • 原文地址:https://www.cnblogs.com/dede-6/p/7554030.html
Copyright © 2011-2022 走看看