Write a program that reads a year and three days of this year (by their numbers) from the standard input and output all dates corresponding to these numbers in the same order.
Computer scienceProgramming languagesJavaAdditional instrumentsEssential standard classesDate and time
LocalDate
Convert numbers to days
Report a typo
Sample Input 1:
2017
315
5
42Sample Output 1:
2017-11-11
2017-01-05
2017-02-11Write a program in Java 17
class Main {
public static void main(String[] args) {
// put your code here
}
}
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.