Problème java.
Fermé
ants974
Messages postés
1
Date d'inscription
samedi 21 mai 2016
Statut
Membre
Dernière intervention
21 mai 2016
-
Modifié par ants974 le 21/05/2016 à 19:55
Ants974 - 21 mai 2016 à 21:19
Ants974 - 21 mai 2016 à 21:19
A voir également:
- Problème java.
- Waptrick java football - Télécharger - Jeux vidéo
- Jeux java itel football - Télécharger - Jeux vidéo
- Java apk - Télécharger - Langages
- Java décompiler - Télécharger - Langages
- Java runtime - Télécharger - Langages
1 réponse
Enlève le ";" après le for...
Devrait être:
Ce ; mettra fin la boucle for avant l’exécution des instructions...
Sinon tu peux aussi enlever la ligne "int str=i;" ensuite écrire directement "tab[i]" au lieu de "tab[str]"
ce qui donnera au final:
for(int i = 0; i < tab.length; i++);
Devrait être:
for(int i = 0; i < tab.length; i++)
Ce ; mettra fin la boucle for avant l’exécution des instructions...
Sinon tu peux aussi enlever la ligne "int str=i;" ensuite écrire directement "tab[i]" au lieu de "tab[str]"
ce qui donnera au final:
package projectests;
public class testv {
public static void main(String[] args){
// TODO Auto-generated method stub
int tab[] = {'4','5','6'};
for(int i = 0; i < tab.length; i++)
{
System.out.println(tab[i]);
}
}
}
21 mai 2016 à 21:19
Ps:pour la ligne «int str = i» je savais déjà quelle était non obligatoire mais je testais d'autres façon d'ecrire.