<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>JAVA</title>
<link>http://www.accptech.com/homework/s1/java/</link>
<description>课后作业 ┳ 第一学期 ┳ JAVA</description>
<language>zh-cn</language>
<generator><![CDATA[&lt;p&gt;Copyright 2008 &lt;strong&gt;&lt;font color=&quot;#0099CC&quot;&gt;accpTech&lt;/font&gt;&lt;font color=&quot;#000000&quot;&gt;.com&lt;/font&gt;&lt;/strong&gt; All Rights Reserved. 桂ICP备06012179号&lt;script src=&quot;http://s93.cnzz.com/stat.php?id=969008&amp;web_id=969008&quot; language=&quot;JavaScript&quot; charset=&quot;gb2312&quot;&gt;&lt;/script&gt;&lt;/p&gt;]]></generator>
<webmaster>webmaster@accptech.com</webmaster>
<item>
    <title><![CDATA[Java语言的基本组成]]></title>
    <link>http://www.accptech.com/homework/s1/java/1492.html</link>
    <description><![CDATA[标识符、关键字、文字、运算符和分隔符。这五种元素有着不同的语法含义和组成规则，它们互相配合，共同完成Java语言的语意表达。]]></description>
    <pubDate>2010-02-10</pubDate>
    <category>JAVA</category>
    <author>匡秱</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[ACCP 5.0 S1《项目实战》之一《骑士飞行棋》]]></title>
    <link>http://www.accptech.com/homework/s1/java/1056.html</link>
    <description><![CDATA[S1《项目实战》中的第一个项目个骑士飞行棋]]></description>
    <pubDate>2009-08-06</pubDate>
    <category>JAVA</category>
    <author>顾聪</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[S1Java上机贯穿案例ShopManagementSystem提高]]></title>
    <link>http://www.accptech.com/homework/s1/java/1044.html</link>
    <description><![CDATA[做完S1的贯穿项目，发现有很多不足，做的过程中加了一些修改，在这里共享给大家]]></description>
    <pubDate>2009-08-02</pubDate>
    <category>JAVA</category>
    <author>顾聪</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[兰州思威培训中心所用Java练习题]]></title>
    <link>http://www.accptech.com/homework/s1/java/1043.html</link>
    <description><![CDATA[中心老师分发的java基础习题，有些超纲。 做了一部分，分享一下，大家雅正。]]></description>
    <pubDate>2009-08-02</pubDate>
    <category>JAVA</category>
    <author>顾聪</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第七章课后选择题]]></title>
    <link>http://www.accptech.com/homework/s1/java/691.html</link>
    <description><![CDATA[1.使用（）方法，可以以日期和时间的默认字符串表示显示日期和时间。 A.setTime() B.getInstance() C.toString() D.equals() 2.使用（）方法可以获取Calaender实例。 A.get() B.getInstance() C.getTime() D.equ]]></description>
    <pubDate>2009-04-08</pubDate>
    <category>JAVA</category>
    <author>冰川</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第六章上机题]]></title>
    <link>http://www.accptech.com/homework/s1/java/391.html</link>
    <description><![CDATA[1.编写一个程序，检查字符串是否为合法的JAVA标识符．提示：使用Character.isJavaIdentifierStart()和Character.isJavaIdentifierPart()方法．2.构建一个Occurrences程序，查找e字符在字符串Seize the day中出现]]></description>
    <pubDate>2008-10-18</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第六章课后作业题]]></title>
    <link>http://www.accptech.com/homework/s1/java/390.html</link>
    <description><![CDATA[1.编写一个JAVA程序，完成以下功能：（1）声明一个名为s的String对象，并使它的内容是quot;Call me Accpquot;;（2）打印整个字符串．（3）使用length()方法打印字符串的长度．（4）使用charAt()方法打印字符吕的第一个字符．（5）使用charAt()方法和length()打印字符]]></description>
    <pubDate>2008-10-18</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第六章课后选择题]]></title>
    <link>http://www.accptech.com/homework/s1/java/389.html</link>
    <description><![CDATA[１.以下Character类的方法中，（）可以确定字符是否为字母．A.isDigit()方法B.isLetter()方法C.isSpace()方法D.isUnicodeIdentifier()方法２.JAVA提供名为（）的包装类来包装原始字符串类型．A.IntegerB.DoubleC.StringD.Char3.判断错误．如果是错误的，请说明理由]]></description>
    <pubDate>2008-10-18</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第五章上机题]]></title>
    <link>http://www.accptech.com/homework/s1/java/388.html</link>
    <description><![CDATA[1.编写FactorialException程序，在运行时接受和计算一个数字的阶乘．被用于阶乘计算的数字应为正数．此程序应引发每个可能出现的异常，即用户可能会忘记指定参数或指定的参数不是数字格式．捕获相关的异常并输出相应的错误消息．提示：使用ArragIndexOutOfBoundsException类]]></description>
    <pubDate>2008-10-18</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第五章课后作业题]]></title>
    <link>http://www.accptech.com/homework/s1/java/387.html</link>
    <description><![CDATA[下面代码：public class ExceptionTest{public static void main(String[]args){String s1=args[0];String s2=args[1];String s3=args[2];System.out.print(s1+s2+s3);}}执行命令：Java Test red green blue时，会发生运行错误．请对这段代码进行异常处理，同样执行]]></description>
    <pubDate>2008-10-18</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第五章课后选择题]]></title>
    <link>http://www.accptech.com/homework/s1/java/386.html</link>
    <description><![CDATA[1.Thorwable类是JAVA（）类的直接父类．A.ObjectB.ExceptionC.ErrorD.RuntimeException2.Thorwable类的（）方法用于获得有关错误的详细消息．A.getMessage()B.toString()C.message()D.getOutpu()t3.（）是Thorwable类的父类．A.ExceptionB.ErrorC.ObjectD.Runt]]></description>
    <pubDate>2008-10-18</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第四章上机题]]></title>
    <link>http://www.accptech.com/homework/s1/java/265.html</link>
    <description><![CDATA[1.编写JAVA程序，用于将摄氏温度转换为华氏温度，反之亦然。使用继承定义一个父类，其中包含名为convert()的抽象方法。定义两个子类以重写convert()方法。一个子类将提供从摄氏温度到华氏温度转换的实现，另一个子类将提供从华氏温度到摄氏温度转换的实现。再编写一个测试类]]></description>
    <pubDate>2008-09-15</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第三章上机题]]></title>
    <link>http://www.accptech.com/homework/s1/java/263.html</link>
    <description><![CDATA[1.编写一个程序，用于显示人的姓名和年龄。使用默认构造方法对name和age变量赋值。使用参数化构造方法，以传递姓名和年龄的值。定义一个方法，同时显示两个构造方法的值，输出如下图：2.编写一个程序，在构造方法中显示消息“包裹重5千克”，然后分别经千]]></description>
    <pubDate>2008-09-14</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第二章上机题]]></title>
    <link>http://www.accptech.com/homework/s1/java/262.html</link>
    <description><![CDATA[1.编写一个程序，用于显示前十个偶数的和。提示：使用for循环语句。2.编写一个程序，用于显示1到100之间7的倍数。提示：使用%运算符得出除法的余数。、3.编写一个程序，打印出一个1到9的乘法表。如下图所示：提示：利用循环嵌套。]]></description>
    <pubDate>2008-09-14</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第四章课后作业题]]></title>
    <link>http://www.accptech.com/homework/s1/java/256.html</link>
    <description><![CDATA[1.定义一个接口，声明一个方法计算长方形的面积（根据长方形的长和宽），再用一个具体的类去实现这个接口，再编写一个测试的类去使用这个接口。提示：利用关键字interface定义一个接口，再现用另一个类去实现这个接口。请参考：4.5节 接口。2.医生有姓名（name），编号（in]]></description>
    <pubDate>2008-09-12</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第三章课后作业题]]></title>
    <link>http://www.accptech.com/homework/s1/java/255.html</link>
    <description><![CDATA[1.编写一个包含名为Calculator类的程序。定义两个变量，编写用于执行加，减，乘，除运算的方法。在些程序中使用构造方法，并在main()方法中创建该类的对象并访问这些方法。提示：在些程序中使用构造方法就是此构造方法中是一个有参的。2.创建一个名为child的子包，其基础包]]></description>
    <pubDate>2008-09-12</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第四章课后选择题]]></title>
    <link>http://www.accptech.com/homework/s1/java/254.html</link>
    <description><![CDATA[1.()术语常常用来指代父类。A.ParentB.ChildC.SuperclassD.Subclass2.关键字()用来调用父类构造方法。A.baseB.superC.thisD.extends3.在JAVA中，当在类中定义两个或多个方法，它们有相同的名称而参数项不同时，这称为()。A.继承B.多态性C.构造方法D.方法重载4]]></description>
    <pubDate>2008-09-12</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第三章课后选择题]]></title>
    <link>http://www.accptech.com/homework/s1/java/253.html</link>
    <description><![CDATA[1.()是拥有属性和行为或方法的实体。A.对象B.类C.方法D.构造方法2.对象的特性在类中表示为变量，称为类的()。A.对象B.属性C.方法D.数据类型3.()就是检验有关某个实体的所有可用信息的过程，以便标识与应用程序相关的信息。A.抽象B.封装C.方法D.构造方法4.如果]]></description>
    <pubDate>2008-09-12</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第二章课后作业题]]></title>
    <link>http://www.accptech.com/homework/s1/java/252.html</link>
    <description><![CDATA[1.将下面的switch语句用if语句表示出来。switch(grade){case 10:case 9:a=1; b=2;break;case 8:a=3;]]></description>
    <pubDate>2008-09-12</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第一章课后作业题]]></title>
    <link>http://www.accptech.com/homework/s1/java/251.html</link>
    <description><![CDATA[1.编写一个程序以输出下列消息。欢迎来到JAVA世界！这是我的第一个JAVA程序。提示：用System.out.println()输出，参考：1.5节 JAVA的开发环境（下）]]></description>
    <pubDate>2008-09-12</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第二章课后选择题]]></title>
    <link>http://www.accptech.com/homework/s1/java/249.html</link>
    <description><![CDATA[1.在JAVA中，byte数据类型的范围是（）。A.-32767~32768B.-32768~32767C.-127~128D.-128~1272.以下（）是合法和标识符。A.Tel_numB.emplC.8678D.batch.no3.下列代码的输出结果是（）。class you{public static void main(String []args){int ]]></description>
    <pubDate>2008-09-11</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>
<item>
    <title><![CDATA[JAVA第一章课后选择题]]></title>
    <link>http://www.accptech.com/homework/s1/java/248.html</link>
    <description><![CDATA[1.下面（A）是JDK中的JAVA运行工具。A.javacB.javamC.javaD.javar分析：javac是JAVA运行工具，它是用将JAVA源代码文件编译成字节码。2.选出在JAVA中有效的注释声明（AB）。A.//This is a commentB.*/This is commentC./This is a commentD./*This i]]></description>
    <pubDate>2008-09-11</pubDate>
    <category>JAVA</category>
    <author>李波</author>
    <comments>ACCP教程网</comments>
</item>

</channel>
</rss>
