
Java
IYreality
HELLO WORLD
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
实训总结
@[toc] #实训总结报告 ## 〇、阶段划分 1. Stage 1 (熟悉GridWorld基本架构以及Java编程语言) 2. Stage 2 (完成Par2 - Part5对GridWorld的扩展) 3. Stage 3 (接触图像处理,学习并DP算法,BP算法,认识并设计估价函数) ##Ⅰ、 具体工作 ###1.1 Stage 1 #### 1.1.1 编程工具的学习 ` `...原创 2019-12-01 19:04:08 · 384 阅读 · 0 评论 -
测试报告
jump测试 测试前面有两个空位时 @Test public void testJump() { ActorWorld world = new ActorWorld(); Jumper jumper = new Jumper(); world.add(new Location(4, 4), jumper); int ...原创 2019-11-30 09:12:37 · 144 阅读 · 0 评论 -
Part2:Bug Variations
Answer the following questions on Matrix Set 2 The source code for the BoxBug class can be found in the boxBug directory. What is the role of the instance variable sideLength? What is the role of the...原创 2019-11-16 17:13:01 · 214 阅读 · 0 评论 -
part2
degrees direction 0 north 45 northEast 90 east 135 sourtheast 180 sourth 225 sourthWest 270 West 315 northWest 360 north原创 2019-11-10 21:24:39 · 220 阅读 · 0 评论 -
calculator Java
import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.lang.*; final public class calculator { //process the question utility question private calculator(){} //cha...原创 2019-11-10 17:30:15 · 202 阅读 · 0 评论 -
gridworld
java ant build.xml <project name="helloworld" default="test"> <target name="test"> <echo message="Hello World!" /> </target> </project>原创 2019-11-10 22:10:47 · 1189 阅读 · 0 评论 -
Java复习篇二——类的用法
简单使用: package relearn; class person{ public void speak() { System.out.println("I'm a human."); } } class boy extends person{ public void speak() { System.out.println("I'm a boy."); } } ...原创 2019-09-21 17:24:16 · 217 阅读 · 0 评论 -
Java复习篇一
快要实训了,然后一年前学的Java基本忘得一干二净了 重头再来~ 输出hello System.out.println("hello"); 获取输入 //获取输入 Scanner cin = new Scanner(System.in); System.out.println(cin.nextLine());//输入字符串,可以有空格,回车结束 逆转字符串: ...原创 2019-09-21 17:22:55 · 125 阅读 · 0 评论