-
Notifications
You must be signed in to change notification settings - Fork 10
/
1557.c
42 lines (36 loc) · 810 Bytes
/
1557.c
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
#include <stdio.h>
#include <math.h>
int contarDigitos(int valor) {
int contaDigitos = 0;
do {
contaDigitos = contaDigitos + 1;
valor = valor / 10;
}
while (valor != 0);
return contaDigitos;
}
int main() {
int n, i, j;
while (scanf("%d", &n), n != 0) {
int matriz[n][n];
int valor = 0;
for (i = 0; i < n; i++) {
for (j = i; j < n; j++) {
matriz[i][j] = pow(2, valor + j);
matriz[j][i] = pow(2, valor + j);
}
valor++;
}
for (i = 0; i < n; i++) {
for (j = 0; j < n; j++) {
if (j == 0)
printf("%*d", contarDigitos(matriz[n-1][n-1]), matriz[i][j]);
else
printf("%*d", contarDigitos(matriz[n-1][n-1]) + 1, matriz[i][j]);
}
printf("\n");
}
printf("\n");
}
return 0;
}