2023-02-18 14:09:11 +00:00
|
|
|
package aula01;
|
2023-02-13 15:56:43 +00:00
|
|
|
|
|
|
|
public class PescadaDeRaboNaBoca {
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
recursivoSimples(100);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void recursivoSimples(int x) {
|
|
|
|
System.out.println(x);
|
|
|
|
x--;
|
|
|
|
if (x>0)
|
|
|
|
recursivoSimples(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|