3 réponses
Pacorabanix
Messages postés
3248
Date d'inscription
jeudi 23 août 2007
Statut
Membre
Dernière intervention
19 mai 2013
661
16 nov. 2009 à 01:12
16 nov. 2009 à 01:12
adns
Messages postés
1094
Date d'inscription
vendredi 23 février 2007
Statut
Membre
Dernière intervention
27 mars 2012
153
16 nov. 2009 à 11:22
16 nov. 2009 à 11:22
Bonjour
voila un exemple qui devrait t'aider
for (int i = 0, i<=10;i++)
for (int y = 0, y<=10;y++)
M[i][y] = i*y
Adns
voila un exemple qui devrait t'aider
for (int i = 0, i<=10;i++)
for (int y = 0, y<=10;y++)
M[i][y] = i*y
Adns
Char Snipeur
Messages postés
9813
Date d'inscription
vendredi 23 avril 2004
Statut
Contributeur
Dernière intervention
3 octobre 2023
1 298
16 nov. 2009 à 12:28
16 nov. 2009 à 12:28
je dirai même plus.
for (int i = 0, i<10;i++) for (int y = 0, y<10;y++) M[i][y] = (i+1)*(1+y);
loupius
Messages postés
697
Date d'inscription
dimanche 1 novembre 2009
Statut
Membre
Dernière intervention
31 décembre 2017
148
16 nov. 2009 à 12:45
16 nov. 2009 à 12:45
Je dirai même plus.
Bonne journée.
for (int i=0; i<10; i++) for (int y=0; y<10;y++) M[i][y] = (i+1)*(1+y);Ah ces p... de copié-collé ça vous fait écrire n'importe quoi ! ;-)
Bonne journée.
java 19
>
loupius
Messages postés
697
Date d'inscription
dimanche 1 novembre 2009
Statut
Membre
Dernière intervention
31 décembre 2017
16 nov. 2009 à 19:38
16 nov. 2009 à 19:38
merci bcp cher ami
loupius
Messages postés
697
Date d'inscription
dimanche 1 novembre 2009
Statut
Membre
Dernière intervention
31 décembre 2017
148
>
java 19
16 nov. 2009 à 19:41
16 nov. 2009 à 19:41
De rien, de rien, mais tu aurais pu mettre 'chers amis', je ne suis pas le seul à t'avoir répondu et ça fait toujours plaisir.
Il ne te reste plus qu'à passer ton post en 'résolu'.
A la prochaine et bonne continuation.
Il ne te reste plus qu'à passer ton post en 'résolu'.
A la prochaine et bonne continuation.
java 19
>
loupius
Messages postés
697
Date d'inscription
dimanche 1 novembre 2009
Statut
Membre
Dernière intervention
31 décembre 2017
16 nov. 2009 à 20:02
16 nov. 2009 à 20:02
je suis nouvelle dans ce site pour ça pardonner moi si je comi des erreur svp
jai 4 matrice en langue java
si quelquún a besoin de
1)public class cologne {
public static void main(String[] args) {
int t[][]=new int[11][11];
int i,j;
int l=1;
for ( i = 1; i <11; i++) {
for (j = 1; j <11; j++) {
t[i][j]=l++;
System.out.print(" | "+t[i][j]);
}
System.out.println( );
}
}
}
2)public class impaire {
public static void main(String[] args) {
int t[][]=new int[11][11];
int i,j;
int l=1;
for ( i = 1; i <11; i++) {
for (j = 1; j <11; j++) {
t[i][j]=l++;
l++;
System.out.print(" | "+t[i][j]);
}
System.out.println( );
}
}
}
3)public class lignes {
public static void main(String[] args) {
int t[][]=new int [11][11];
int i,j;
for ( i = 0; i <=10; i++) {
t[i][i]=i;
}
for ( j = 1; j <=9; j++) {
for ( i = 1; i <=10; i++) {
System.out.print(" | " +t[i][i]);
}
System.out.println(" ");
}
}
}
4)public class multiplication {
public static void main(String[] args) {
int t[][]=new int[11][11];
int i,j;
for ( i = 1; i <11; i++) {
for ( j = 1; j <11; j++) {
t[i][j]=j*i;
System.out.print(" | "+t[i][j]);
}
System.out.println( );
}
}
}
et pour moi jai besoin des matrice un ou il ya les 100 premiers chiffres premiers
le dexieme de 1 a 100 en helica
et le dernier de 1 a 100 avec transposition de matrice
si quelquún a besoin de
1)public class cologne {
public static void main(String[] args) {
int t[][]=new int[11][11];
int i,j;
int l=1;
for ( i = 1; i <11; i++) {
for (j = 1; j <11; j++) {
t[i][j]=l++;
System.out.print(" | "+t[i][j]);
}
System.out.println( );
}
}
}
2)public class impaire {
public static void main(String[] args) {
int t[][]=new int[11][11];
int i,j;
int l=1;
for ( i = 1; i <11; i++) {
for (j = 1; j <11; j++) {
t[i][j]=l++;
l++;
System.out.print(" | "+t[i][j]);
}
System.out.println( );
}
}
}
3)public class lignes {
public static void main(String[] args) {
int t[][]=new int [11][11];
int i,j;
for ( i = 0; i <=10; i++) {
t[i][i]=i;
}
for ( j = 1; j <=9; j++) {
for ( i = 1; i <=10; i++) {
System.out.print(" | " +t[i][i]);
}
System.out.println(" ");
}
}
}
4)public class multiplication {
public static void main(String[] args) {
int t[][]=new int[11][11];
int i,j;
for ( i = 1; i <11; i++) {
for ( j = 1; j <11; j++) {
t[i][j]=j*i;
System.out.print(" | "+t[i][j]);
}
System.out.println( );
}
}
}
et pour moi jai besoin des matrice un ou il ya les 100 premiers chiffres premiers
le dexieme de 1 a 100 en helica
et le dernier de 1 a 100 avec transposition de matrice