摘要:
package School.Day13; public class ColaEmployee { String name; int month; double money; public double getSalary(int month){ if (month == this.month) { 阅读全文
摘要:
1. package School.Day11; public class Point { int x; int y; public Point(){ } public Point(int x,int y){ this.x = x; this.y = y; } public void movePoi 阅读全文
摘要:
package School.Day10; public class Test01 { public static void main(String[] args) { int[] x = {9,1,2,7,6,3,4,10,8,5}; maopao(x); for (int i : x) { Sy 阅读全文
摘要:
1、编写一个简单程序,要求数组长度为5,分别赋值10,20,30,40,50,在控制台输出 该数组的值。(知识点:数组定义和创建、一维数组初始化)[必做题]? package wjy21; public class wjy1 { public static void main(String[] ar 阅读全文
摘要:
1.编写一个简单程序,要求数组长度为5,静态赋值10,20,30,40,50,在控制台输出该数组的值。 package School.Day8; public class Test01 { public static void main(String[] args){ int[] x = {10,2 阅读全文