Matrice
Résolu/Fermé
dalya-dodi
Messages postés
2
Date d'inscription
dimanche 10 mai 2015
Statut
Membre
Dernière intervention
11 mai 2015
-
10 mai 2015 à 12:06
YAP - 11 mai 2015 à 17:35
YAP - 11 mai 2015 à 17:35
11 mai 2015 à 00:07
import java.util.Arrays;
public class Matrice {
public static void main(String[] args)
{
float[] ftArray1 = new float[]{12,30,42};
float[] ftArray2 = new float[]{12,30,42};
boolean blnResult = Arrays.equals(ftArray1,ftArray2);
System.out.println("sont il égaux ? : " + blnResult);
}
}
svp aidez moi ,merci
11 mai 2015 à 17:35