摘要: class Demo { public static void main(String[] args) { for(int x=0; x<10; x++) { //for语句版 System.out.println("HellWorld"); } System.out.println(" "); / 阅读全文
posted @ 2018-01-12 22:06 宋雪博客 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-01-10 22:01 宋雪博客 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-01-08 10:50 宋雪博客 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-01-08 10:32 宋雪博客 阅读(88) 评论(1) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-01-08 10:18 宋雪博客 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-01-08 09:57 宋雪博客 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-01-08 09:43 宋雪博客 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-01-06 10:55 宋雪博客 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 有符号的数据表示法 在计算机内,有符号数有3种表示法,原码,反码,和补码。所有数据都是采用补码进行的。 原码:就是二进制定点表示法,即最高位为符号位,“0”表示正,“1”表示负,其余位表示数值的大小。 反码:正数的反码与其原码相同;负数的反码是对其原码逐位取反,但符号位除外。 补码:正数的补码与原码 阅读全文
posted @ 2018-01-02 17:11 宋雪博客 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-12-31 11:14 宋雪博客 阅读(88) 评论(0) 推荐(0) 编辑