上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 39 下一页
摘要: ASCII码 称为 美国标准信息交换码 (American standard code of Information Interchange) 其中一共有多少个码?2的7次幂 128个 Unicode码 世界各种语言的联合码表 这个码表中包含中文 英文 韩文 俄文 一共有65536个 char le 阅读全文
posted @ 2017-10-16 17:00 Advancing-Swift 阅读(830) 评论(0) 推荐(0) 编辑
摘要: 第六题:使用判断语句,根据数字,输出对应的中文是星期几? 直接使用一个if语句的情况 int weekDay=3; if(weekDay==1){ sop("今天是星期一"); } if(weekDay==2){ sop("今天是星期二"); } if(weekDay==3){ sop("今天是星期 阅读全文
posted @ 2017-10-16 09:08 Advancing-Swift 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 精灵图片下载地址: http://static.rupeng.com/upload/images/201510/F5FBA6FBCED7506695B67B1A551D3E80%E7%B2%BE%E7%81%B5.zip 阅读全文
posted @ 2017-10-15 21:19 Advancing-Swift 阅读(685) 评论(0) 推荐(0) 编辑
摘要: package com.swift; import java.awt.Color; import com.rupeng.game.GameCore;//导入游戏引擎包 //实现Runnable接口 public class GameCoreDemo implements Runnable { public static void main(String[] args) { ... 阅读全文
posted @ 2017-10-14 17:06 Advancing-Swift 阅读(565) 评论(0) 推荐(0) 编辑
摘要: eclipse 导出Runnable JAR file 导出后如果系统没有JRE,双击无法运行,需要用命令方法 安装后解决,如图 双击后闪退的原因,通过执行 java -jar TingGe.jar ,发现如图 原来所需要的图片、声音等内容虽然打包到其中,但是路径差了一个新的命名层,内容都在包里,而 阅读全文
posted @ 2017-10-13 21:39 Advancing-Swift 阅读(1382) 评论(0) 推荐(0) 编辑
摘要: c++的IO控制符 控制符2 阅读全文
posted @ 2017-10-13 09:42 Advancing-Swift 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 下载地址: 链接: https://pan.baidu.com/s/1hsiWQPY 密码: bdpn 阅读全文
posted @ 2017-10-13 08:48 Advancing-Swift 阅读(601) 评论(0) 推荐(0) 编辑
摘要: 如鹏游戏引擎包下载地址 链接: https://pan.baidu.com/s/1eSKo8KE 密码: n32z 关于 implements Runnable接口,用下面例子说明 以卖票程序为例,通过Thread类完成: 如果用Runnable就可以实现资源共享,下面看例子: 虽然现在程序中有三个 阅读全文
posted @ 2017-10-12 22:18 Advancing-Swift 阅读(1228) 评论(0) 推荐(0) 编辑
摘要: 关闭JVM 从内存中全部消失 阅读全文
posted @ 2017-10-11 20:32 Advancing-Swift 阅读(686) 评论(0) 推荐(0) 编辑
摘要: package com.swift; import java.util.Scanner; public class Hex2Decimal { public static void main(String[] args) { //从键盘输入16进制的转换方法 Scanner scan=new Scanner(System.in); S... 阅读全文
posted @ 2017-10-11 16:31 Advancing-Swift 阅读(740) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 39 下一页