This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class notas { | |
public static notas n; | |
double[] notas=new double[5]; | |
public notas() | |
{ | |
int pasaron=0; | |
posicion(); | |
pasaron=cuantosPasaron(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
NewerOlder