forked from harambeisnotdead/java-carande
-
Notifications
You must be signed in to change notification settings - Fork 0
/
piramide.java
54 lines (39 loc) · 828 Bytes
/
piramide.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import java.util.Scanner;
public class piramide {
public static void main (String args[]) {
/*
ejemplo:
x
xxx
xxxxx
xxxxxxx
xxxxxxxxx
pisos = 5
linea = x
linea += 'xx'
espacios = pisos - 1
espacios --
*/
Scanner scanner = new Scanner(System.in);
String linea = "x";
String espacios = " ";
System.out.print("Introduce el numero de pisos: ");
int pisos=scanner.nextInt();
int contador = 1;
int controlador = pisos;
//bucle principal
for (int i=0;i<pisos;i++) {
//bucle para espacios
while (contador<controlador) {
System.out.print(espacios);
contador++;
}
//reiniciar contador y decrementar controlador (controlador=pisos)
contador=1;
controlador--;
//lineas
System.out.println(linea);
linea+="xx";
}
}
}