Skip to content

Instantly share code, notes, and snippets.

@loiane
Created April 14, 2015 23:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save loiane/4de382a264891aeb5214 to your computer and use it in GitHub Desktop.
Save loiane/4de382a264891aeb5214 to your computer and use it in GitHub Desktop.
MatrizesTipoDiferente
package com.loiane.cursojava.aula20;
public class MatrizesTipoDiferente {
public static void main(String[] args) {
Object[][] matriz = new Object[1][5];
matriz[0][0] = "Nome do aluno";
matriz[0][1] = 10;
matriz[0][2] = 9;
matriz[0][3] = 8;
matriz[0][4] = 7.5;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment