0x01
编写类A01,定义方法max,实现求某个double数组的最大值,并返回Homework01.java
public class Homework01 {
public static void main(String[] args){
double[] numbers = {534, 1,34, 90, 56.9, 23, 45, 103.981};
A01 a01 = new A01();
System.out.println("The max number is " + a01.max(numbers));;
}
}
class A01{
public double max(double[] number){
double maxnum = number[0];
int i = 0;
for(; i number[i] ? maxnum : number[i];
}
return maxnum;
}
}
The max number is 534.0
0x02
编写类A02,定义方法find,实现查找某字符串数组中的元素查找,并返回索引,如果找不到,返回-1。
public class Homework02 {
public static void main(String[] args){
String[] data = {"hello", "hi", "yes", "no"};
String finddata = "yes";
A02 a02 = new A02();
int index = a02.find(data, finddata);
if(index == -1){
System.out.println("NoFind, the index is " + index);
}else {
System.out.println("Find, the index is " + index);
}
}
}
class A02{
public int find(String[] data, String finddata){
int i = 0;
for(; i 150,则更改为150,如果价格>100,更改为100,否则不变。
public class Homework03 {
public static void main(String[] args){
book bo = new book("xiyouji", 102.4);
bo.updatePrice();
}
}
class book{
String name;
double price;
public book(String name, double price){
this.name = name;
this.price = price;
}
public void updatePrice(){
if(price > 150){
price = 150;
}else if(price > 100){
price = 100;
}
System.out.println("The book name is " + name + ";price is " + price);
}
}
The book name is xiyouji;price is 100.0
0x04
编写类A03,实现数组的复制功能copyArr,输入旧数组,返回一个新数组,元素和旧数组一样。
public class Homework04 {
public static void main(String[] args){
A03 a03 = new A03();
int[] arrOld = {1,2,3,9,8,7};
int[] arrNew = a03.copyArr(arrOld);
for (int i = 0; i
关注
打赏
最近更新
- 深拷贝和浅拷贝的区别(重点)
- 【Vue】走进Vue框架世界
- 【云服务器】项目部署—搭建网站—vue电商后台管理系统
- 【React介绍】 一文带你深入React
- 【React】React组件实例的三大属性之state,props,refs(你学废了吗)
- 【脚手架VueCLI】从零开始,创建一个VUE项目
- 【React】深入理解React组件生命周期----图文详解(含代码)
- 【React】DOM的Diffing算法是什么?以及DOM中key的作用----经典面试题
- 【React】1_使用React脚手架创建项目步骤--------详解(含项目结构说明)
- 【React】2_如何使用react脚手架写一个简单的页面?