PROGRAMMING:Create a countdown thread
Create a countdown thread. Requirements: 1. The thread uses the writing method of runnable interface; 2. The thread of the program prints out the countdown value every 0.5 seconds (the value is the last value minus 1).
###Input format:
N (enter an integer on the keyboard)
###Output format:
Print out the remaining data every 0.5 seconds
###Input example:
```in
six
```
###Output example:
The corresponding output is given here. For example:
```out
six
five
four
three
two
one
0
```
answer:If there is no answer, please comment
###Input format:
N (enter an integer on the keyboard)
###Output format:
Print out the remaining data every 0.5 seconds
###Input example:
```in
six
```
###Output example:
The corresponding output is given here. For example:
```out
six
five
four
three
two
one
0
```
answer:If there is no answer, please comment