Skip to content

Instantly share code, notes, and snippets.

View titandiaz's full-sized avatar

Cristian Diaz titandiaz

View GitHub Profile
@titandiaz
titandiaz / MatrizTraspuesta.java
Last active May 3, 2018 05:04
como hacer la traspuesta de una matriz en java
package traspuestaDeUnaMatriz;
public class traspuestaMatriz {
public static void main(String[] args) {
// TODO Auto-generated method stub
int[][] matriz = {{1,2,3},{4,5,6},{7,8,9},{10,11,12}};
int[][] matrizT = new int[matriz[0].length][matriz.length];
int x, y;
@titandiaz
titandiaz / notas.java
Created April 12, 2016 03:40
Notas cuantos pasaron
public class notas {
public static notas n;
double[] notas=new double[5];
public notas()
{
int pasaron=0;
posicion();
pasaron=cuantosPasaron();
@titandiaz
titandiaz / arraysEjercicioUno.java
Created April 4, 2016 04:49
Con una nota escrita saber que posición tiene esa nota en el array
package arrays;
import java.util.Scanner;
public class arrayEjercicioUno {
public static void main(String[] args) {
double[] notas = {2.8, 4.6, 3.8, 3.7, 3.5, 1.2, 4.7};
Scanner leer=new Scanner(System.in);
@titandiaz
titandiaz / promedioNotas.java
Created April 4, 2016 02:18
ClaseDeArreglos
package arrays;
import java.util.Scanner;
public class arrayEjercicioUno {
public static void main(String[] args) {
double[] notas = new double [7];
Scanner leer=new Scanner(System.in);