Problème Eclipse!
Résolu/Fermé
moli.Bym
Messages postés
29
Date d'inscription
samedi 10 mars 2012
Statut
Membre
Dernière intervention
16 mars 2013
-
16 mars 2013 à 11:02
moli.Bym Messages postés 29 Date d'inscription samedi 10 mars 2012 Statut Membre Dernière intervention 16 mars 2013 - 16 mars 2013 à 14:06
moli.Bym Messages postés 29 Date d'inscription samedi 10 mars 2012 Statut Membre Dernière intervention 16 mars 2013 - 16 mars 2013 à 14:06
A voir également:
- Problème Eclipse!
- Eclipse download - Télécharger - Langages
- Honeywell eclipse ms5145 configuration français - Forum Autres périphériques et appareils
- Eclipse en francais - Forum Programmation
- Problème avec douchette honeywell - Forum Matériel & Système
- The eclipse executable launcher was unable to locate its companion shared library ✓ - Forum Java
1 réponse
KX
Messages postés
16754
Date d'inscription
samedi 31 mai 2008
Statut
Modérateur
Dernière intervention
25 novembre 2024
3 020
16 mars 2013 à 11:14
16 mars 2013 à 11:14
Je doute que ce soit la faute d'Eclipse, montre nous ton code pour te corriger (la partie avec le if devrait suffire)
16 mars 2013 à 12:53
public class PremPass {
public static void main(String []args){
String label,operat,op1,op2;
Instruction inst = new Instruction();
System.out.println("entrez le label, S'il n y a pas de label écrivez //");
Scanner sc= new Scanner(System.in);
label=sc.next();
System.out.println("entrez l'opération");
operat=sc.next();
if (operat=="add"){
System.out.println("entrez les opérandes");
op1=sc.next();
op2=sc.next();
inst=new Instruction(label,operat,op1,op2);}
else
if(operat=="stop") {
inst=new Instruction(label,operat);
}
else
if(operat=="copy"||operat=="divise"||operat=="load"||operat=="multi"||operat=="read"||operat=="sub"||operat=="store"||operat=="write"){
System.out.println("entrez l'opérand");
op1=sc.next();
inst=new Instruction(label,ope,op1);
}
System.out.println(inst.label+" "+inst.operat+" "+inst.op1+" "+inst.op2);
}
}
16 mars 2013 à 13:45
Modifié par moli.Bym le 16/03/2013 à 14:06