• Java暑期学习第三十四天日报


    一、今日学习内容:

    今天练习第二章的例题。

    二、遇到的问题:

     无。

    三、明日计划:

    明天练习第二章的习题。

    今日学习的具体内容:

    例2.1将字符赋给整型变量

    import java.util.Scanner;
    public class t2 {
        public static void main(String[] args) {
            int x;
            int y;
            x='A';
            y='B';
            System.out.println(x+" "+y);
        }
        
    }

    测试截图:

    例2.2字符数据与整数进行算数运算

    public class t2 {
        public static void main(String[] args) {
            char c1,c2;
            c1='a';
            c2='b';
            c1=(char) (c1-32);
            c2=(char) (c2-32);
            System.out.println(c1+" "+c2);
        }
        
    }

    测试截图:

    2.3符号常量的使用

    public class t2 {
        static int PRICE=30;
        public static void main(String[] args) {
            int num=10,total;
            total=num*PRICE;
            
            System.out.println("两数相乘之和为:"+total);
        }
        
    }

    测试截图:

    2.4 强制类型转换

    public class t2 {
        public static void main(String[] args) {
            int x;
            double i=3.6;
            x=(int)i;
            System.out.println("x="+x+","+"i="+i);
        }
        
    }

    测试截图:

     

    例2.5将有符号数据传给无符号变量

    public class t2 {
        public static void main(String[] args) {
            short x;
            short y=-1;
            x=y;
            System.out.println("x="+x);
            System.exit(0);
        }
        
    }

    测试截图:

  • 相关阅读:
    Codeforces Round #436 (Div. 2)
    【bzoj1090】 [SCOI2003]字符串折叠
    【并查集】食物链(带权并查集)
    【图论】二分图
    【图论】关押罪犯
    关于图论的若干巴拉巴拉
    一系列的入门and一堆吐槽
    【分块】八
    9-30刷题记录
    bzoj5055
  • 原文地址:https://www.cnblogs.com/Lizhichengweidashen/p/13460812.html
Copyright © 2020-2023  润新知