// // P.45 For loop // public class ForLoop { public static void main(String[] args) { int i; for(i=10; i>0; i-=1) System.out.println(i); } }