Tableau avec object
Fermé
domxaline
Messages postés
188
Date d'inscription
lundi 16 mai 2005
Statut
Membre
Dernière intervention
7 mars 2018
-
Modifié par domxaline le 11/09/2016 à 19:07
domxaline - 14 sept. 2016 à 11:06
domxaline - 14 sept. 2016 à 11:06
A voir également:
- Tableau avec object
- Tableau croisé dynamique - Guide
- Tableau ascii - Guide
- Tableau word - Guide
- Trier tableau excel - Guide
- Shockwave flash object - Télécharger - Divers Web & Internet
4 réponses
KX
Messages postés
16753
Date d'inscription
samedi 31 mai 2008
Statut
Modérateur
Dernière intervention
25 novembre 2024
3 020
11 sept. 2016 à 18:50
11 sept. 2016 à 18:50
Bonjour,
Dans les conventions utilisés pour cet algorithme, E représente une Entrée et S une sortie (on pourrait également avoir ES).
Donc
Quant à
En Java cela se traduirait par des méthodes
Dans les conventions utilisés pour cet algorithme, E représente une Entrée et S une sortie (on pourrait également avoir ES).
Donc
saisiTtabVar(S tabvar : TtabVar, E n : entier)est une fonction qui prend en entrée un entier "n" et donne en sortie un "TtabVar" tabvar.
Quant à
saisieTtabVar(S tabvar : TtabVar)il donne également en sortie un "TtabVar" tabvar, mais sans avoir besoin de l'entier "n" en entrée.
En Java cela se traduirait par des méthodes
TtabVar saisiTtabVar(int n)et
TtabVar saisiTtabVar()où TtabVar est une classe à définir.
j'ai première parti corrigé moi est ce que c'est bien ou pas
mon ouput est:
1, 2, 3, 4, 5, null
1, 2, 3, 4, 1, null
comment enlever ce null, si j'enleve return il donne une erreur
public class TabVar
{
public static int[] affiche(int[] toto)
{
for(int i=0;i<toto.length;i++)
{
System.out.print(toto[i]+", ");
}
return null;
}
}
public class TestTabVar
{
public static void main(String[] args)
{
int toto[]={1,2,3,4,5};
System.out.println(TabVar.affiche(toto));
toto[4]=1;
System.out.println(TabVar.affiche(toto));
}
}
mon ouput est:
1, 2, 3, 4, 5, null
1, 2, 3, 4, 1, null
comment enlever ce null, si j'enleve return il donne une erreur
KX
Messages postés
16753
Date d'inscription
samedi 31 mai 2008
Statut
Modérateur
Dernière intervention
25 novembre 2024
3 020
12 sept. 2016 à 18:48
12 sept. 2016 à 18:48
Tu fais
Cependant je doute que ton exercice te demande de créer une méthode
System.out.println(TabVar.affiche(toto));or
TabVar.afficheretourne null, donc ça affiche null... C'est normal !
Cependant je doute que ton exercice te demande de créer une méthode
int[] affiche(int[] toto). Peut être que si tu suivais les consignes de l'énoncé (à défaut de comprendre ce que tu fais) tu n'aurais pas ce genre de bugs.
j'ai récrit mon programme
maintenant j'ai erreur suivante:
1, 2, 3, 4, 5, null
1, 2, 3, 4, 1, null
Voulez vous entrer un entier ?
oui
Exception in thread "main" java.lang.NullPointerException
at TabVar.afficheTaille(TabVar.java:33)
at TestTabVar.main(TestTabVar.java:10)
voilà mon programme:
maintenant j'ai erreur suivante:
1, 2, 3, 4, 5, null
1, 2, 3, 4, 1, null
Voulez vous entrer un entier ?
oui
Exception in thread "main" java.lang.NullPointerException
at TabVar.afficheTaille(TabVar.java:33)
at TestTabVar.main(TestTabVar.java:10)
voilà mon programme:
import java.util.Scanner; public class TabVar { static int taille; static int[]tab; static int[]tabX; static final int max=5; public static void initialiser(int tailleX,int[]tabX) { taille = tailleX; tab = tabX; } public static int[] affiche(int[] toto) { for(int i=0;i<toto.length;i++) { System.out.print(toto[i]+", "); } return null; } public static int[] afficheTaille(int taille) { TabVar.taille=0; String reponse="non"; do { Scanner sc=new Scanner(System.in); System.out.println("Voulez vous entrer un entier ?"); reponse=sc.nextLine(); if(reponse!="non") { System.out.println(TabVar.tab[TabVar.taille]); TabVar.taille++; } }while((reponse=="non")||(TabVar.taille==max)); return null; } }
bonjour j'ai corrigé la première méthode de mon programme
pour la deuxième méthode afficheTaille donne une erreur message
voilà ce message :
1, 2, 3, 4, 5, 6,
1, 2, 3, 4, 5, 1,
Voulez vous entrer un entier ?
oui
Exception in thread "main" java.lang.NullPointerException
at TabVar.afficheTaille(TabVar.java:36)
at TestTabVar.main(TestTabVar.java:12)
voilà mon programme:
pour la deuxième méthode afficheTaille donne une erreur message
voilà ce message :
1, 2, 3, 4, 5, 6,
1, 2, 3, 4, 5, 1,
Voulez vous entrer un entier ?
oui
Exception in thread "main" java.lang.NullPointerException
at TabVar.afficheTaille(TabVar.java:36)
at TestTabVar.main(TestTabVar.java:12)
voilà mon programme:
import java.util.Scanner; public class TabVar { static int taille; static int[]tab; static int[]tabX; private static char[][] toto; static final int max=5; public static void affiche(int[]toto) { for(int i=0;i<toto.length;i++) { System.out.print(toto[i]+", "); } System.out.println(); } public static void afficheTaille(int[]toto,int taille) { TabVar.taille=0; String reponse="non"; do { Scanner sc=new Scanner(System.in); System.out.println("Voulez vous entrer un entier ?"); reponse=sc.nextLine(); if(reponse!="non") { System.out.println(TabVar.toto[TabVar.taille]); TabVar.taille++; } }while((reponse=="non")||(TabVar.taille<max)); } }
public class TestTabVar { public static void main(String[] args) { int taille=0; int toto[]={1,2,3,4,5,6}; TabVar.affiche(toto); toto[5]=1; TabVar.affiche(toto); TabVar.afficheTaille(toto,taille); } }
11 sept. 2016 à 19:11
maintenant pouvez vous corriger le programme que j'avais écrit svp
11 sept. 2016 à 19:17
11 sept. 2016 à 21:31
je vous ai dit que je suis complètement perdu avec objet, tableau et ses paramètres. mon problème est là