码迷,mamicode.com
首页 > 其他好文 > 详细

作业 金嘉琪

时间:2017-10-08 16:07:38      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:oid   一个   强制   ring   精度   sum   class   log   big   

1输出一个长整型

public class Long
{
  public static void main(String[] args)
  {
  long l=123456789123;
    System.out.println("长整型变量为:"+l);
  }
}

技术分享

 

 

 

 

 

 

2输出一个单精度常量
public class Float
{
  public static void main(String[] args)
    {
      float f=(float)2.4;
      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=3;
      b=(byte)(b+200);
      System.out.println("强制转换:"+b);
    }
}

 技术分享

 

 

 

 

 

 

 

5字符型加法运算
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计算

public class SumChar
{
  public static void main(String[] args)
  {
    int x=20;
    x=x/2*100;
    System.out.println("得出:"+x);
  }
}

 

 

 

技术分享

 

作业 金嘉琪

标签:oid   一个   强制   ring   精度   sum   class   log   big   

原文地址:http://www.cnblogs.com/ninomiya617/p/7637552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!