mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +07:00
GitOrigin-RevId: 4c9da5c574ed55e63dfef43d0d5dd655931533ee
14 lines
225 B
Java
14 lines
225 B
Java
import java.lang.Integer;
|
|
import java.util.*;
|
|
import java.util.ArrayList;
|
|
|
|
public class Aphrodite {
|
|
|
|
public void recursiveCountdown(Integer a<caret>){
|
|
if (a == 1){
|
|
return;
|
|
}
|
|
recursiveCountdown(a-1);
|
|
}
|
|
}
|