Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.company;
- public class Main {
- public static void main(String[] args) {
- printUntiNumber(5);
- }
- public static void printUntiNumber (int number) {
- for (int i = number; i >= 1; i--) {
- System.out.println(i);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment