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); |
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
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 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
package mundo; | |
import java.util.Scanner; | |
public class Campeonato { | |
String [] equipos; | |
int [][] tabla; | |
int maxEquipos; | |
int [] puntos; | |
int [] partidosGanados; |
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 yava; | |
import java.util.Scanner; | |
public class DomiciliosYava { | |
double [] sueldos= new double[3]; | |
double [] domicilios= new double[sueldos.length]; | |
int i; | |
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
import java.util.ArrayList; | |
public class parqueadero { | |
private ArrayList<Puesto> c; | |
public parqueadero() |
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
computed: { | |
citiesWithPayOnDelivery() { | |
if (this.paymentMethods[0] && this.paymentMethods[0].valores !== '') { | |
return JSON.parse(this.paymentMethods[0].valores) | |
}else { | |
return [] | |
} | |
}, | |
cityLabelsWithPayOnDelivery: { | |
get() { |
OlderNewer