摘要:
1。编写一个程序,实现从命令行参数输入两 个字符串类型的数值,并计算输出两个数值的 和。 package wang; import java.util.Scanner; public class wang { public static void main(String[] args) { // T 阅读全文
2023年7月5日 #
摘要:
1 package wang; import java.util.Scanner; public interface Fruit{ } class Apple implements Fruit{ public Apple() { System.out.println("创建了一个苹果对象"); } 阅读全文
摘要:
1. 设计三个类,分别如下:(知识点:抽象类及抽象方法) [必做题]• 3.1 设计Shape表示图形类,有面积属性area、周长属性per,颜色属性color,有两个构造方法(一个是默认的、一个是为颜色赋值的),还有3个抽象方法,分别是:getArea计算面积、getPer计算周长、showAll 阅读全文
摘要:
1、定义一个点类Point,包含2个成员变量x、y分别表示x和y坐标,2个构造器Point()和Point(intx0,y0),以及一个movePoint(intdx,intdy)方法实现点的位置移动,创建两个Point对象p1、p2,分别调用movePoint方法后,打印p1和p2的坐标。 pac 阅读全文
摘要:
1.编写一个方法,实现冒泡排序(由小到大),并调用该方法 package wang; import java.util.Iterator; public class wang { public static void px(int a[]) { for(int m=0;m<a.length;m++) 阅读全文
摘要:
1、给定一个有9个整数(1,6,2,3,9,4,5,7,8)的数组,先排序,然后输出排序后的数组的值。 package wang; public class wang { public static void Array() { int arr[]=new int[] {1,6,2,3,9,4,5, 阅读全文
摘要:
1.编写一个简单程序,要求数组长度为5,静态赋值10,20,30,40,50,在控制台输出该数组的值 package wang; public class wang { public static void main(String[] args) { int a[]= {10,20,30,40,50 阅读全文
摘要:
package wang; public class wang { public static void main(String[] args) { // TODO Auto-generated method stub int sum = 0; for (int i = 1; i <= 100; i 阅读全文
摘要:
1. 分别使用for循环,while循环,do循环求1到100之间所有能被3整除的整数的和。(知识点:循环语句) package wang; public class wang { public static void main(String[] args) { int sum=0; for(int 阅读全文
摘要:
1. 输入年份月份,输出该月的天数package wang; import java.util.Scanner; public class wang { public static void main(String[] args) { // TODO Auto-generated method st 阅读全文