Write a program that reads a date from the standard input and prints a date that is 10 days before.
Computer scienceProgramming languagesJavaAdditional instrumentsEssential standard classesDate and time
LocalDate
10 days before
Report a typo
Sample Input 1:
2017-06-03Sample Output 1:
2017-05-24Sample Input 2:
2017-04-28Sample Output 2:
2017-04-18Write 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.