package chapter20230804;
public class test09 {
public static void main(String[] args) {
// TODO Auto-generated method stub
/*
1부터 5사이에 존재하는 모든 정수를 역순으로 출력하는 프로그램을 구현하세요.
5 4 3 2 1
*/
for (int i = 5; i >= 1; i--) {
System.out.println(i);
}
}
}