Convert the following while-loop into an equivalent for-loop…

Convert the following while-loop into an equivalent for-loop as closely as possible using the code snippet bank and template below. It is not enough for the loop to be functionally identical; it needs to follow any patterns mentioned in lecture. int i = 70; while ( i > 0 ) {     i–;    System.out.println(i);    i -= 5; } for (1. _____________; 2._____________; 3._____________)  { 4. _____________;    System.out.println(i); }