摘要:
1 package 第九次作业; public class Point { int x; int y; public Point(int x0, int y0) { this.x = x0; this.y = y0; } public Point() { } public void movePoin 阅读全文
摘要:
老师:Teacher丹丹 提交作业 1.编写一个方法,实现冒泡排序(由小到大),并调用该方法 package 第十次作业; import java.util.Scanner; public class one { /** * @param args */ public static void ma 阅读全文
摘要:
.使用for循环计算1-100的和,除了以3结尾的那些数 package 第六次作业; public class one { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated me 阅读全文
摘要:
1.编写一个程序,定义圆的半径,求圆的面积. package 第二次作业; public class 第一题 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method s 阅读全文