摘要:
1.返回键实现对话框弹出是否退出应用程序 package com.example.myapplication; import android.app.AlertDialog; import android.os.Bundle; import android.app.Activity; import 阅读全文
摘要:
package dmk2; public class Vehicle { String brand; String colour; double speed; public Vehicle(String brand, String colour, double speed) { super(); t 阅读全文
摘要:
public class ColaEmployee { protected String name; protected int month; public ColaEmployee() { super(); } public ColaEmployee(String name, int month) 阅读全文
摘要:
1、定义一个点类Point, 包含2个成员变量x、y分别表示x和y坐标,2个构造器Point()和Point( intx0,y0),以及一个movePoint (int dx,intdy)方法实现点的位置移动,创建两个Point对象p1、p2, 分别调用movePoint方法后,打印pl和p2的坐标 阅读全文
摘要:
1.编写一个方法,实现冒泡排序(由小到大),并调用该方法 import java.util.Scanner; public class A { /** * @param args */ public static void main(String[] args) { System.out.print 阅读全文
摘要:
1、编写一个简单程序,要求数组长度为5,分别赋值10,20,30,40,50,在控制台输出该数组的值。 public class A { /** * @param args */ //. public static void main(String[] args) { int []arr={10,2 阅读全文
摘要:
1.编写一个简单程序,要求数组长度为5,静态赋值10,20,30,40,50,在控制台输出该数组的值。 public class A { /** * @param args */ //. public static void main(String[] args) { int []a={10,20, 阅读全文
摘要:
1.使用for循环计算1-100的和,除了以3结尾的那些数 public class A { /** * @param args */ public static void main(String[] args) { int a; a=1; int sum=0; for(a=1;a<=100;a++ 阅读全文