import java.util.*;
public class Main {
public static void main(String[] args) {
// Your code here!
String strNumero1;
String strNumero2;
int intNumero1;
int intNumero2;
int total;
intNumero1 = 5;
intNumero2 = 8;
total = intNumero1 + intNumero2;
System.out.println("Suma="+total);
System.out.println("MATRIZ ALEATORIA");
int s;
s=0;
int n;
n=5;
int matriz[][] = new int[5][5];
for (int x=0; x < n; x++)
{
for (int y=0; y < n; y++)
{
s=s+1;
matriz[x][y] = s;
//matriz[x][y] = (int) (Math.random()*9+1);
}
}
n=5;
n=matriz.length;
for (int x=0; x <n ; x++)
{
for (int y=0; y < n; y++) {
System.out.print(matriz[x][y] + " ");
}
System.out.println(" ");
}
System.out.println("Entrada 45 ");
for (int y=0; y <n ; y++)
{
for (int x=0; x < n; x++) {
System.out.print(matriz[x][y] + " ");
}
System.out.println(" ");
}
System.out.println("Entrada 56 ");
System.out.println("TRIANGULO DE PASCAL ");
int nfilas = 5;
int[] a = new int[1];
for (int i = 1; i <= nfilas; i++) {
int[] x = new int[i];
for (int j = 0; j < i; j++) {
if (j == 0 || j == (i - 1)) {
x[j] = 1;
} else {
x[j] = a[j] + a[j - 1];
}
System.out.print(x[j] + " ");
}
a = x;
System.out.println();
}
System.out.println("TRIANGULO DE PASCAL 2 ");
int c;
n=4;
c=n;
int[] mat = new int[1];
for (int k = 0; k <= n; k++)
{
int[] y = new int[k];
for (int o = 0; o < k; o++)
{
if (o == 0 || o == (k - 1))
{
y[o] = 1;
} else {
y[o] = mat[o] + mat[o - 1];
}
System.out.print(y[o] + " ");
}
mat = y;
System.out.println();
}
}
}
No hay comentarios:
Publicar un comentario