4.输入一个值,查找数组{3, 6, 54, 8, 4, 2, 101, 4, 11, 22, 33, 55}是否包含它。6.先输入一个年份,再输入日期m月d号,输出这一天是这一年的第几天,1到365/366。注意处理闰年。2021 4 10 100 7.先输入一个年份,再输入一个1到365/366的天数,输出这一天所在的月份及当月日期,m月d号。注意处理闰年。
时间: 2024-03-18 07:42:32 浏览: 157
在python3中实现查找数组中最接近与某值的元素操作
好的,以下是您需要的题目的Java代码和解释:
4.查找数组中是否包含指定值的Java代码:
```java
public class SearchArray {
public static void main(String[] args) {
int[] arr = {3, 6, 54, 8, 4, 2, 101, 4, 11, 22, 33, 55};
int target = 8;
boolean isFound = false;
for (int i = 0; i < arr.length; i++) {
if (arr[i] == target) {
isFound = true;
break;
}
}
if (isFound) {
System.out.println("数组中包含" + target);
} else {
System.out.println("数组中不包含" + target);
}
}
}
```
在上述代码中,我们定义了一个`int`类型的数组`arr`和一个整型变量`target`,表示需要查找的值。使用`for`循环遍历数组,如果找到了和`target`相等的元素,则将`isFound`标记为`true`并跳出循环。最后根据`isFound`的值输出结果。
6.计算某一天是一年中的第几天的Java代码:
```java
import java.util.Scanner;
public class DayOfYear {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("请输入年份:");
int year = scanner.nextInt();
System.out.print("请输入月份:");
int month = scanner.nextInt();
System.out.print("请输入日期:");
int day = scanner.nextInt();
int days = 0;
int[] daysOfMonth = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
daysOfMonth[1] = 29; //闰年2月有29天
}
for (int i = 0; i < month - 1; i++) {
days += daysOfMonth[i];
}
days += day;
System.out.println(year + "年" + month + "月" + day + "日是这一年的第" + days + "天");
}
}
```
在上述代码中,我们使用`Scanner`类从控制台读取年、月、日三个输入参数,然后根据是否为闰年来初始化每个月的天数。接下来使用`for`循环累加前`month-1`个月的天数,再加上`day`即可得到这一天是这一年的第几天。
7.计算某一天所在月份和日期的Java代码:
```java
import java.util.Scanner;
public class MonthAndDay {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("请输入年份:");
int year = scanner.nextInt();
System.out.print("请输入这一年的第几天:");
int days = scanner.nextInt();
int[] daysOfMonth = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
daysOfMonth[1] = 29; //闰年2月有29天
}
int month = 0;
int day = 0;
for (int i = 0; i < daysOfMonth.length; i++) {
if (days > daysOfMonth[i]) {
days -= daysOfMonth[i];
} else {
month = i + 1;
day = days;
break;
}
}
System.out.println("这一天是" + year + "年" + month + "月" + day + "日");
}
}
```
在上述代码中,我们使用`Scanner`类从控制台读取年、天两个输入参数,然后根据是否为闰年来初始化每个月的天数。使用`for`循环依次减去每个月的天数,直到剩余天数小于等于当前月份的天数,那么这一天所在的月份就是当前月份,日期就是剩余天数。最后输出结果。
阅读全文