master
This commit is contained in:
commit
4b812f019a
8
.vscode/settings.json
vendored
Normal file
8
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"java.project.sourcePaths": ["src"],
|
||||
"java.project.outputPath": "bin",
|
||||
"java.project.referencedLibraries": [
|
||||
"lib/**/*.jar"
|
||||
],
|
||||
"java.dependency.packagePresentation": "hierarchical"
|
||||
}
|
18
README.md
Normal file
18
README.md
Normal file
@ -0,0 +1,18 @@
|
||||
## Getting Started
|
||||
|
||||
Welcome to the VS Code Java world. Here is a guideline to help you get started to write Java code in Visual Studio Code.
|
||||
|
||||
## Folder Structure
|
||||
|
||||
The workspace contains two folders by default, where:
|
||||
|
||||
- `src`: the folder to maintain sources
|
||||
- `lib`: the folder to maintain dependencies
|
||||
|
||||
Meanwhile, the compiled output files will be generated in the `bin` folder by default.
|
||||
|
||||
> If you want to customize the folder structure, open `.vscode/settings.json` and update the related settings there.
|
||||
|
||||
## Dependency Management
|
||||
|
||||
The `JAVA PROJECTS` view allows you to manage your dependencies. More details can be found [here](https://github.com/microsoft/vscode-java-dependency#manage-dependencies).
|
BIN
bin/POO/T0_introduction/7_00-introduction.mp4
Normal file
BIN
bin/POO/T0_introduction/7_00-introduction.mp4
Normal file
Binary file not shown.
BIN
bin/POO/T0_introduction/7_01-exemple_de_code.mp4
Normal file
BIN
bin/POO/T0_introduction/7_01-exemple_de_code.mp4
Normal file
Binary file not shown.
BIN
bin/POO/T0_introduction/7_classes_et_objets.pdf
Normal file
BIN
bin/POO/T0_introduction/7_classes_et_objets.pdf
Normal file
Binary file not shown.
BIN
bin/POO/T0_introduction/Rectangle.class
Normal file
BIN
bin/POO/T0_introduction/Rectangle.class
Normal file
Binary file not shown.
BIN
bin/POO/T0_introduction/RectangleDemoBegin.class
Normal file
BIN
bin/POO/T0_introduction/RectangleDemoBegin.class
Normal file
Binary file not shown.
BIN
bin/POO/T1_classes_et_objets/7_1-classes_et_objets.pdf
Normal file
BIN
bin/POO/T1_classes_et_objets/7_1-classes_et_objets.pdf
Normal file
Binary file not shown.
BIN
bin/POO/T1_classes_et_objets/7_11-classes_et_objets.mp4
Normal file
BIN
bin/POO/T1_classes_et_objets/7_11-classes_et_objets.mp4
Normal file
Binary file not shown.
BIN
bin/POO/T1_classes_et_objets/7_12-objets_vs_variables.mp4
Normal file
BIN
bin/POO/T1_classes_et_objets/7_12-objets_vs_variables.mp4
Normal file
Binary file not shown.
BIN
bin/POO/T1_classes_et_objets/Car.class
Normal file
BIN
bin/POO/T1_classes_et_objets/Car.class
Normal file
Binary file not shown.
16
bin/POO/T1_classes_et_objets/Ex1–La_classe_Person.txt
Normal file
16
bin/POO/T1_classes_et_objets/Ex1–La_classe_Person.txt
Normal file
@ -0,0 +1,16 @@
|
||||
Objectifs
|
||||
Créer une classe
|
||||
Tester la classe
|
||||
Enoncé du problème
|
||||
Nous souhaitons créer une classe devant représenter une personne. Une personne possède les attributs suivants :
|
||||
Nom
|
||||
Prénom
|
||||
Âge
|
||||
Taille
|
||||
|
||||
Travail à faire
|
||||
Créer la classe Person avec les attributs nécessaires
|
||||
Dans une autre classe qui contiendra votre main :
|
||||
Instanciez une première personne de 19 ans, nommée "John Doe", mesurant 1.75 m
|
||||
Instanciez une second personne de 122 ans, nommée "Mathusalem", dont la taille est de 1.20 m
|
||||
Vérifiez que tout fonctionne bien avec ces deux objets. Notamment, essayez d’imprimer le nom des personnes lorsque vous les aurez instanciées.
|
23
bin/POO/T1_classes_et_objets/Ex2–La_classe_Car.txt
Normal file
23
bin/POO/T1_classes_et_objets/Ex2–La_classe_Car.txt
Normal file
@ -0,0 +1,23 @@
|
||||
Objectifs
|
||||
Créer une classe
|
||||
Tester une classe
|
||||
Tester les méthodes de classes existantes (avec la classe String)
|
||||
Enoncé du problème
|
||||
On souhaite réaliser une classe pour modéliser une voiture. Pensez quels types d’attributs cette classe doit posséder, sachant
|
||||
Un véhicule est caractérisé par sa couleur, son nom et sa vitesse maximale.
|
||||
Un véhicule possède une méthode permettant de retourner sa représentation textuelle. Par exemple le code suivant :
|
||||
|
||||
Car c1 = new Car();
|
||||
c1.color = "bleue";
|
||||
c1.maxSpeed = 250;
|
||||
c1.type = "Ford Raptor";
|
||||
System.out.println(c1.getStringRepresentation());
|
||||
|
||||
doit afficher
|
||||
|
||||
Ford Raptor bleue, vitesse max : 250 km/h
|
||||
|
||||
Travail à faire
|
||||
Implémentez la classe Car selon les instructions ci-dessus.
|
||||
Testez votre classe Car dans une autre classe qui contiendra le main.
|
||||
Vérifiez que l’affichage est bien correct.
|
BIN
bin/POO/T1_classes_et_objets/Exercice2.class
Normal file
BIN
bin/POO/T1_classes_et_objets/Exercice2.class
Normal file
Binary file not shown.
BIN
bin/POO/T1_classes_et_objets/Person.class
Normal file
BIN
bin/POO/T1_classes_et_objets/Person.class
Normal file
Binary file not shown.
BIN
bin/POO/T1_classes_et_objets/exercice1.class
Normal file
BIN
bin/POO/T1_classes_et_objets/exercice1.class
Normal file
Binary file not shown.
BIN
bin/POO/T2_constructeurs/7_2-constructeurs.pdf
Normal file
BIN
bin/POO/T2_constructeurs/7_2-constructeurs.pdf
Normal file
Binary file not shown.
BIN
bin/POO/T2_constructeurs/7_2-les_constructeurs.mp4
Normal file
BIN
bin/POO/T2_constructeurs/7_2-les_constructeurs.mp4
Normal file
Binary file not shown.
BIN
bin/POO/T2_constructeurs/Car.class
Normal file
BIN
bin/POO/T2_constructeurs/Car.class
Normal file
Binary file not shown.
19
bin/POO/T2_constructeurs/Ex3–constructeur1.txt
Normal file
19
bin/POO/T2_constructeurs/Ex3–constructeur1.txt
Normal file
@ -0,0 +1,19 @@
|
||||
Objectif
|
||||
Ajouter un constructeur à une classe existante
|
||||
Tester une classe avec son constructeur
|
||||
Enoncé du problème
|
||||
1. Ajoutez à la classe Car définie auparavant un constructeur permettant d’instancier la voiture en une seule ligne de code, avec tous ses attributs comme ci-dessous.
|
||||
2. Utilisez ce constructeur pour créer une instance de la classe.
|
||||
|
||||
Car c1 = new Car("Ford Raptor", "bleue", 250);
|
||||
System.out.println(c1.getStringRepresentation());
|
||||
|
||||
doit afficher
|
||||
|
||||
Ford Raptor bleue, vitesse max : 250 km/h
|
||||
|
||||
|
||||
Travail à faire
|
||||
Modifiez la classe Car selon les instructions ci-dessus.
|
||||
Testez votre classe Car dans une autre classe qui contiendra le main.
|
||||
Vérifiez que l’affichage est bien correct.
|
12
bin/POO/T2_constructeurs/Ex4–constructeur2.txt
Normal file
12
bin/POO/T2_constructeurs/Ex4–constructeur2.txt
Normal file
@ -0,0 +1,12 @@
|
||||
Objectif
|
||||
Ajouter plusieurs constructeurs à une classe existante
|
||||
Tester une classe avec son constructeur
|
||||
Constater l’existance de null
|
||||
Enoncé du problème
|
||||
Ajoutez deux constructe urs à la class Person définie auparavant.
|
||||
1. Le premier permettant de définir tous les attributs en une fois.
|
||||
2. Un second constructeur ne prenant que le prénom comme argument. Ce constructeur doit appeler le constructeur avec tous les arguments. Pour les String non définis, utilisez la constante null.
|
||||
Travail à faire
|
||||
Complétez la classe Person selon les instructions ci-dessus.
|
||||
Testez votre classe Person dans une autre classe qui contiendra le main.
|
||||
Utilisez le constructeur à un argument pour instancier Mathusalem, qui n’a pas de prénom. Que se passe-t-il lorsque vous essayer d’appeler une méthode sur le prénom de votre objet, par exemple toUpperCase() qui est une méthode définie pour les String ?
|
BIN
bin/POO/T2_constructeurs/Exercice3.class
Normal file
BIN
bin/POO/T2_constructeurs/Exercice3.class
Normal file
Binary file not shown.
BIN
bin/POO/T2_constructeurs/Exercice4.class
Normal file
BIN
bin/POO/T2_constructeurs/Exercice4.class
Normal file
Binary file not shown.
BIN
bin/POO/T2_constructeurs/Person.class
Normal file
BIN
bin/POO/T2_constructeurs/Person.class
Normal file
Binary file not shown.
BIN
bin/POO/T3_Visibilite_des_membres/7_3-visibilite_des_membres.mp4
Normal file
BIN
bin/POO/T3_Visibilite_des_membres/7_3-visibilite_des_membres.mp4
Normal file
Binary file not shown.
BIN
bin/POO/T3_Visibilite_des_membres/7_3-visibilite_des_membres.pdf
Normal file
BIN
bin/POO/T3_Visibilite_des_membres/7_3-visibilite_des_membres.pdf
Normal file
Binary file not shown.
BIN
bin/POO/T3_Visibilite_des_membres/Exercice5.class
Normal file
BIN
bin/POO/T3_Visibilite_des_membres/Exercice5.class
Normal file
Binary file not shown.
BIN
bin/POO/T3_Visibilite_des_membres/Triangle.class
Normal file
BIN
bin/POO/T3_Visibilite_des_membres/Triangle.class
Normal file
Binary file not shown.
BIN
bin/POO/T4_modificateur_static/7_4-modificateur_static.pdf
Normal file
BIN
bin/POO/T4_modificateur_static/7_4-modificateur_static.pdf
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/POO/string_methods.pdf
Normal file
BIN
bin/POO/string_methods.pdf
Normal file
Binary file not shown.
BIN
bin/dumpThings/dickClock.class
Normal file
BIN
bin/dumpThings/dickClock.class
Normal file
Binary file not shown.
BIN
bin/lab1/Fuel.class
Normal file
BIN
bin/lab1/Fuel.class
Normal file
Binary file not shown.
BIN
bin/lab1/Input.class
Normal file
BIN
bin/lab1/Input.class
Normal file
Binary file not shown.
BIN
bin/lab1/MyProgram.class
Normal file
BIN
bin/lab1/MyProgram.class
Normal file
Binary file not shown.
BIN
bin/lab1/RoomCalc.class
Normal file
BIN
bin/lab1/RoomCalc.class
Normal file
Binary file not shown.
BIN
bin/lab1/sphere.class
Normal file
BIN
bin/lab1/sphere.class
Normal file
Binary file not shown.
BIN
bin/lab1/swap.class
Normal file
BIN
bin/lab1/swap.class
Normal file
Binary file not shown.
BIN
bin/lab2/2-Lab-FR-Datatypes.pdf
Normal file
BIN
bin/lab2/2-Lab-FR-Datatypes.pdf
Normal file
Binary file not shown.
BIN
bin/lab2/Input.class
Normal file
BIN
bin/lab2/Input.class
Normal file
Binary file not shown.
BIN
bin/lab2/Task1.class
Normal file
BIN
bin/lab2/Task1.class
Normal file
Binary file not shown.
BIN
bin/lab2/TextTools.class
Normal file
BIN
bin/lab2/TextTools.class
Normal file
Binary file not shown.
BIN
bin/lab2/task2.class
Normal file
BIN
bin/lab2/task2.class
Normal file
Binary file not shown.
BIN
bin/lab2/task3.class
Normal file
BIN
bin/lab2/task3.class
Normal file
Binary file not shown.
BIN
bin/lab2/task4.class
Normal file
BIN
bin/lab2/task4.class
Normal file
Binary file not shown.
BIN
bin/lab2/task5.class
Normal file
BIN
bin/lab2/task5.class
Normal file
Binary file not shown.
BIN
bin/lab2/task6.class
Normal file
BIN
bin/lab2/task6.class
Normal file
Binary file not shown.
BIN
bin/lab2/task7.class
Normal file
BIN
bin/lab2/task7.class
Normal file
Binary file not shown.
BIN
bin/lab2/task8.class
Normal file
BIN
bin/lab2/task8.class
Normal file
Binary file not shown.
BIN
bin/lab3/03-expression-test-loop-fr.pdf
Normal file
BIN
bin/lab3/03-expression-test-loop-fr.pdf
Normal file
Binary file not shown.
BIN
bin/lab3/DrawArrow.class
Normal file
BIN
bin/lab3/DrawArrow.class
Normal file
Binary file not shown.
BIN
bin/lab3/Input.class
Normal file
BIN
bin/lab3/Input.class
Normal file
Binary file not shown.
BIN
bin/lab3/SimpleCalculator.class
Normal file
BIN
bin/lab3/SimpleCalculator.class
Normal file
Binary file not shown.
BIN
bin/lab3/task1.class
Normal file
BIN
bin/lab3/task1.class
Normal file
Binary file not shown.
BIN
bin/lab3/task4.class
Normal file
BIN
bin/lab3/task4.class
Normal file
Binary file not shown.
BIN
bin/lab3/task5.class
Normal file
BIN
bin/lab3/task5.class
Normal file
Binary file not shown.
BIN
bin/lab3/task6.class
Normal file
BIN
bin/lab3/task6.class
Normal file
Binary file not shown.
BIN
bin/lab3/task7.class
Normal file
BIN
bin/lab3/task7.class
Normal file
Binary file not shown.
BIN
bin/lab4/05-functions-fr.pdf
Normal file
BIN
bin/lab4/05-functions-fr.pdf
Normal file
Binary file not shown.
BIN
bin/lab4/DottedFlag.class
Normal file
BIN
bin/lab4/DottedFlag.class
Normal file
Binary file not shown.
BIN
bin/lab4/Input.class
Normal file
BIN
bin/lab4/Input.class
Normal file
Binary file not shown.
BIN
bin/lab4/StringFunctions.class
Normal file
BIN
bin/lab4/StringFunctions.class
Normal file
Binary file not shown.
BIN
bin/lab4/task1.class
Normal file
BIN
bin/lab4/task1.class
Normal file
Binary file not shown.
BIN
bin/lab4/task2.class
Normal file
BIN
bin/lab4/task2.class
Normal file
Binary file not shown.
BIN
bin/lab4/task3.class
Normal file
BIN
bin/lab4/task3.class
Normal file
Binary file not shown.
BIN
bin/lab5/06_SecretNumber_FR.pdf
Normal file
BIN
bin/lab5/06_SecretNumber_FR.pdf
Normal file
Binary file not shown.
BIN
bin/lab5/Dialogs.class
Normal file
BIN
bin/lab5/Dialogs.class
Normal file
Binary file not shown.
BIN
bin/lab5/Input.class
Normal file
BIN
bin/lab5/Input.class
Normal file
Binary file not shown.
BIN
bin/lab5/secretNumber.class
Normal file
BIN
bin/lab5/secretNumber.class
Normal file
Binary file not shown.
BIN
bin/lab6/07-HangMan_FR.pdf
Normal file
BIN
bin/lab6/07-HangMan_FR.pdf
Normal file
Binary file not shown.
BIN
bin/lab6/Dialogs.class
Normal file
BIN
bin/lab6/Dialogs.class
Normal file
Binary file not shown.
BIN
bin/lab6/HangMan.class
Normal file
BIN
bin/lab6/HangMan.class
Normal file
Binary file not shown.
BIN
bin/lab6/Input.class
Normal file
BIN
bin/lab6/Input.class
Normal file
Binary file not shown.
BIN
bin/lab6/Person.class
Normal file
BIN
bin/lab6/Person.class
Normal file
Binary file not shown.
BIN
bin/lab6/Task1.class
Normal file
BIN
bin/lab6/Task1.class
Normal file
Binary file not shown.
BIN
bin/lab6/WordManager.class
Normal file
BIN
bin/lab6/WordManager.class
Normal file
Binary file not shown.
600
bin/lab6/french_common_words.csv
Normal file
600
bin/lab6/french_common_words.csv
Normal file
@ -0,0 +1,600 @@
|
||||
bleu;Adjectif
|
||||
super;Adjectif
|
||||
autre;Adjectif
|
||||
bizarre;Adjectif
|
||||
difficile;Adjectif
|
||||
drôle;Adjectif
|
||||
étrange;Adjectif
|
||||
facile;Adjectif
|
||||
grave;Adjectif
|
||||
impossible;Adjectif
|
||||
jeune;Adjectif
|
||||
juste;Adjectif
|
||||
libre;Adjectif
|
||||
malade;Adjectif
|
||||
même;Adjectif
|
||||
pauvre;Adjectif
|
||||
possible;Adjectif
|
||||
propre;Adjectif
|
||||
rouge;Adjectif
|
||||
sale;Adjectif
|
||||
simple;Adjectif
|
||||
tranquille;Adjectif
|
||||
triste;Adjectif
|
||||
vide;Adjectif
|
||||
bonne;Adjectif féminin
|
||||
toute;Adjectif féminin
|
||||
doux;Adjectif masculin
|
||||
faux;Adjectif masculin
|
||||
français;Adjectif masculin
|
||||
gros;Adjectif masculin
|
||||
heureux;Adjectif masculin
|
||||
mauvais;Adjectif masculin
|
||||
sérieux;Adjectif masculin
|
||||
vieux;Adjectif masculin
|
||||
vrai;Adjectif masculin
|
||||
ancien;Adjectif masculin
|
||||
beau;Adjectif masculin
|
||||
blanc;Adjectif masculin
|
||||
certain;Adjectif masculin
|
||||
chaud;Adjectif masculin
|
||||
cher;Adjectif masculin
|
||||
clair;Adjectif masculin
|
||||
content;Adjectif masculin
|
||||
dernier;Adjectif masculin
|
||||
désolé;Adjectif masculin
|
||||
différent;Adjectif masculin
|
||||
droit;Adjectif masculin
|
||||
entier;Adjectif masculin
|
||||
fort;Adjectif masculin
|
||||
froid;Adjectif masculin
|
||||
gentil;Adjectif masculin
|
||||
grand;Adjectif masculin
|
||||
haut;Adjectif masculin
|
||||
humain;Adjectif masculin
|
||||
important;Adjectif masculin
|
||||
joli;Adjectif masculin
|
||||
léger;Adjectif masculin
|
||||
long;Adjectif masculin
|
||||
meilleur;Adjectif masculin
|
||||
mort;Adjectif masculin
|
||||
noir;Adjectif masculin
|
||||
nouveau;Adjectif masculin
|
||||
pareil;Adjectif masculin
|
||||
petit;Adjectif masculin
|
||||
plein;Adjectif masculin
|
||||
premier;Adjectif masculin
|
||||
prêt;Adjectif masculin
|
||||
prochain;Adjectif masculin
|
||||
quoi;Adjectif masculin
|
||||
seul;Adjectif masculin
|
||||
tout;Adjectif masculin
|
||||
vert;Adjectif masculin
|
||||
vivant;Adjectif masculin
|
||||
aide;Nom commun
|
||||
chef;Nom commun
|
||||
enfant;Nom commun
|
||||
garde;Nom commun
|
||||
gauche;Nom commun
|
||||
geste;Nom commun
|
||||
gosse;Nom commun
|
||||
livre;Nom commun
|
||||
merci;Nom commun
|
||||
mort;Nom commun
|
||||
ombre;Nom commun
|
||||
part;Nom commun
|
||||
poche;Nom commun
|
||||
professeur;Nom commun
|
||||
tour;Nom commun
|
||||
fois;Nom commun féminin
|
||||
madame;Nom commun féminin
|
||||
paix;Nom commun féminin
|
||||
voix;Nom commun féminin
|
||||
affaire;Nom commun féminin
|
||||
année;Nom commun féminin
|
||||
arme;Nom commun féminin
|
||||
armée;Nom commun féminin
|
||||
attention;Nom commun féminin
|
||||
balle;Nom commun féminin
|
||||
boîte;Nom commun féminin
|
||||
bouche;Nom commun féminin
|
||||
carte;Nom commun féminin
|
||||
cause;Nom commun féminin
|
||||
chambre;Nom commun féminin
|
||||
chance;Nom commun féminin
|
||||
chose;Nom commun féminin
|
||||
classe;Nom commun féminin
|
||||
confiance;Nom commun féminin
|
||||
couleur;Nom commun féminin
|
||||
cour;Nom commun féminin
|
||||
cuisine;Nom commun féminin
|
||||
dame;Nom commun féminin
|
||||
dent;Nom commun féminin
|
||||
droite;Nom commun féminin
|
||||
école;Nom commun féminin
|
||||
église;Nom commun féminin
|
||||
envie;Nom commun féminin
|
||||
épaule;Nom commun féminin
|
||||
époque;Nom commun féminin
|
||||
équipe;Nom commun féminin
|
||||
erreur;Nom commun féminin
|
||||
espèce;Nom commun féminin
|
||||
face;Nom commun féminin
|
||||
façon;Nom commun féminin
|
||||
faim;Nom commun féminin
|
||||
famille;Nom commun féminin
|
||||
faute;Nom commun féminin
|
||||
femme;Nom commun féminin
|
||||
fenêtre;Nom commun féminin
|
||||
fête;Nom commun féminin
|
||||
fille;Nom commun féminin
|
||||
fleur;Nom commun féminin
|
||||
force;Nom commun féminin
|
||||
forme;Nom commun féminin
|
||||
guerre;Nom commun féminin
|
||||
gueule;Nom commun féminin
|
||||
habitude;Nom commun féminin
|
||||
heure;Nom commun féminin
|
||||
histoire;Nom commun féminin
|
||||
idée;Nom commun féminin
|
||||
image;Nom commun féminin
|
||||
impression;Nom commun féminin
|
||||
jambe;Nom commun féminin
|
||||
joie;Nom commun féminin
|
||||
journée;Nom commun féminin
|
||||
langue;Nom commun féminin
|
||||
lettre;Nom commun féminin
|
||||
lèvre;Nom commun féminin
|
||||
ligne;Nom commun féminin
|
||||
lumière;Nom commun féminin
|
||||
main;Nom commun féminin
|
||||
maison;Nom commun féminin
|
||||
maman;Nom commun féminin
|
||||
manière;Nom commun féminin
|
||||
marche;Nom commun féminin
|
||||
merde;Nom commun féminin
|
||||
mère;Nom commun féminin
|
||||
minute;Nom commun féminin
|
||||
musique;Nom commun féminin
|
||||
nuit;Nom commun féminin
|
||||
odeur;Nom commun féminin
|
||||
oreille;Nom commun féminin
|
||||
parole;Nom commun féminin
|
||||
partie;Nom commun féminin
|
||||
peau;Nom commun féminin
|
||||
peine;Nom commun féminin
|
||||
pensée;Nom commun féminin
|
||||
personne;Nom commun féminin
|
||||
peur;Nom commun féminin
|
||||
photo;Nom commun féminin
|
||||
pièce;Nom commun féminin
|
||||
pierre;Nom commun féminin
|
||||
place;Nom commun féminin
|
||||
police;Nom commun féminin
|
||||
porte;Nom commun féminin
|
||||
présence;Nom commun féminin
|
||||
prison;Nom commun féminin
|
||||
putain;Nom commun féminin
|
||||
question;Nom commun féminin
|
||||
raison;Nom commun féminin
|
||||
réponse;Nom commun féminin
|
||||
robe;Nom commun féminin
|
||||
route;Nom commun féminin
|
||||
salle;Nom commun féminin
|
||||
scène;Nom commun féminin
|
||||
seconde;Nom commun féminin
|
||||
sécurité;Nom commun féminin
|
||||
semaine;Nom commun féminin
|
||||
situation;Nom commun féminin
|
||||
soeur;Nom commun féminin
|
||||
soirée;Nom commun féminin
|
||||
sorte;Nom commun féminin
|
||||
suite;Nom commun féminin
|
||||
table;Nom commun féminin
|
||||
terre;Nom commun féminin
|
||||
tête;Nom commun féminin
|
||||
vérité;Nom commun féminin
|
||||
ville;Nom commun féminin
|
||||
voiture;Nom commun féminin
|
||||
avis;Nom commun masculin
|
||||
bois;Nom commun masculin
|
||||
bras;Nom commun masculin
|
||||
choix;Nom commun masculin
|
||||
corps;Nom commun masculin
|
||||
cours;Nom commun masculin
|
||||
gars;Nom commun masculin
|
||||
mois;Nom commun masculin
|
||||
pays;Nom commun masculin
|
||||
prix;Nom commun masculin
|
||||
propos;Nom commun masculin
|
||||
sens;Nom commun masculin
|
||||
temps;Nom commun masculin
|
||||
travers;Nom commun masculin
|
||||
vieux;Nom commun masculin
|
||||
accord;Nom commun masculin
|
||||
agent;Nom commun masculin
|
||||
amour;Nom commun masculin
|
||||
appel;Nom commun masculin
|
||||
arbre;Nom commun masculin
|
||||
argent;Nom commun masculin
|
||||
avenir;Nom commun masculin
|
||||
avion;Nom commun masculin
|
||||
bateau;Nom commun masculin
|
||||
bébé;Nom commun masculin
|
||||
besoin;Nom commun masculin
|
||||
bonheur;Nom commun masculin
|
||||
bonjour;Nom commun masculin
|
||||
bord;Nom commun masculin
|
||||
boulot;Nom commun masculin
|
||||
bout;Nom commun masculin
|
||||
bruit;Nom commun masculin
|
||||
bureau;Nom commun masculin
|
||||
café;Nom commun masculin
|
||||
camp;Nom commun masculin
|
||||
capitaine;Nom commun masculin
|
||||
chat;Nom commun masculin
|
||||
chemin;Nom commun masculin
|
||||
chéri;Nom commun masculin
|
||||
cheval;Nom commun masculin
|
||||
cheveu;Nom commun masculin
|
||||
chien;Nom commun masculin
|
||||
ciel;Nom commun masculin
|
||||
client;Nom commun masculin
|
||||
cœur;Nom commun masculin
|
||||
coin;Nom commun masculin
|
||||
colonel;Nom commun masculin
|
||||
compte;Nom commun masculin
|
||||
copain;Nom commun masculin
|
||||
côté;Nom commun masculin
|
||||
coup;Nom commun masculin
|
||||
courant;Nom commun masculin
|
||||
début;Nom commun masculin
|
||||
départ;Nom commun masculin
|
||||
dieu;Nom commun masculin
|
||||
docteur;Nom commun masculin
|
||||
doigt;Nom commun masculin
|
||||
dollar;Nom commun masculin
|
||||
doute;Nom commun masculin
|
||||
droit;Nom commun masculin
|
||||
effet;Nom commun masculin
|
||||
endroit;Nom commun masculin
|
||||
ennemi;Nom commun masculin
|
||||
escalier;Nom commun masculin
|
||||
esprit;Nom commun masculin
|
||||
état;Nom commun masculin
|
||||
être;Nom commun masculin
|
||||
exemple;Nom commun masculin
|
||||
fait;Nom commun masculin
|
||||
film;Nom commun masculin
|
||||
flic;Nom commun masculin
|
||||
fond;Nom commun masculin
|
||||
français;Nom commun masculin
|
||||
frère;Nom commun masculin
|
||||
front;Nom commun masculin
|
||||
garçon;Nom commun masculin
|
||||
général;Nom commun masculin
|
||||
genre;Nom commun masculin
|
||||
goût;Nom commun masculin
|
||||
gouvernement;Nom commun masculin
|
||||
grand;Nom commun masculin
|
||||
groupe;Nom commun masculin
|
||||
haut;Nom commun masculin
|
||||
homme;Nom commun masculin
|
||||
honneur;Nom commun masculin
|
||||
hôtel;Nom commun masculin
|
||||
instant;Nom commun masculin
|
||||
intérêt;Nom commun masculin
|
||||
intérieur;Nom commun masculin
|
||||
jardin;Nom commun masculin
|
||||
jour;Nom commun masculin
|
||||
journal;Nom commun masculin
|
||||
lieu;Nom commun masculin
|
||||
long;Nom commun masculin
|
||||
maître;Nom commun masculin
|
||||
mari;Nom commun masculin
|
||||
mariage;Nom commun masculin
|
||||
matin;Nom commun masculin
|
||||
médecin;Nom commun masculin
|
||||
mètre;Nom commun masculin
|
||||
milieu;Nom commun masculin
|
||||
million;Nom commun masculin
|
||||
moment;Nom commun masculin
|
||||
monde;Nom commun masculin
|
||||
monsieur;Nom commun masculin
|
||||
mouvement;Nom commun masculin
|
||||
moyen;Nom commun masculin
|
||||
noir;Nom commun masculin
|
||||
nouveau;Nom commun masculin
|
||||
numéro;Nom commun masculin
|
||||
oeil;Nom commun masculin
|
||||
oiseau;Nom commun masculin
|
||||
oncle;Nom commun masculin
|
||||
ordre;Nom commun masculin
|
||||
papa;Nom commun masculin
|
||||
papier;Nom commun masculin
|
||||
parent;Nom commun masculin
|
||||
passage;Nom commun masculin
|
||||
passé;Nom commun masculin
|
||||
patron;Nom commun masculin
|
||||
père;Nom commun masculin
|
||||
petit;Nom commun masculin
|
||||
peuple;Nom commun masculin
|
||||
pied;Nom commun masculin
|
||||
plaisir;Nom commun masculin
|
||||
plan;Nom commun masculin
|
||||
point;Nom commun masculin
|
||||
pouvoir;Nom commun masculin
|
||||
premier;Nom commun masculin
|
||||
présent;Nom commun masculin
|
||||
président;Nom commun masculin
|
||||
prince;Nom commun masculin
|
||||
problème;Nom commun masculin
|
||||
quartier;Nom commun masculin
|
||||
rapport;Nom commun masculin
|
||||
regard;Nom commun masculin
|
||||
reste;Nom commun masculin
|
||||
retard;Nom commun masculin
|
||||
retour;Nom commun masculin
|
||||
rêve;Nom commun masculin
|
||||
revoir;Nom commun masculin
|
||||
salut;Nom commun masculin
|
||||
sang;Nom commun masculin
|
||||
secret;Nom commun masculin
|
||||
seigneur;Nom commun masculin
|
||||
sentiment;Nom commun masculin
|
||||
service;Nom commun masculin
|
||||
seul;Nom commun masculin
|
||||
siècle;Nom commun masculin
|
||||
signe;Nom commun masculin
|
||||
silence;Nom commun masculin
|
||||
soir;Nom commun masculin
|
||||
soldat;Nom commun masculin
|
||||
soleil;Nom commun masculin
|
||||
sourire;Nom commun masculin
|
||||
souvenir;Nom commun masculin
|
||||
sujet;Nom commun masculin
|
||||
téléphone;Nom commun masculin
|
||||
tout;Nom commun masculin
|
||||
train;Nom commun masculin
|
||||
travail;Nom commun masculin
|
||||
trou;Nom commun masculin
|
||||
truc;Nom commun masculin
|
||||
type;Nom commun masculin
|
||||
vent;Nom commun masculin
|
||||
ventre;Nom commun masculin
|
||||
verre;Nom commun masculin
|
||||
village;Nom commun masculin
|
||||
visage;Nom commun masculin
|
||||
voyage;Nom commun masculin
|
||||
fils;Nom commun masculin pluriel
|
||||
gens;Nom commun pluriel
|
||||
abandonner;Verbe
|
||||
accepter;Verbe
|
||||
accompagner;Verbe
|
||||
acheter;Verbe
|
||||
adorer;Verbe
|
||||
agir;Verbe
|
||||
aider;Verbe
|
||||
aimer;Verbe
|
||||
ajouter;Verbe
|
||||
aller;Verbe
|
||||
amener;Verbe
|
||||
amuser;Verbe
|
||||
annoncer;Verbe
|
||||
apercevoir;Verbe
|
||||
apparaître;Verbe
|
||||
appeler;Verbe
|
||||
apporter;Verbe
|
||||
apprendre;Verbe
|
||||
approcher;Verbe
|
||||
arranger;Verbe
|
||||
arrêter;Verbe
|
||||
arriver;Verbe
|
||||
asseoir;Verbe
|
||||
assurer;Verbe
|
||||
attaquer;Verbe
|
||||
atteindre;Verbe
|
||||
attendre;Verbe
|
||||
avancer;Verbe
|
||||
avoir;Verbe
|
||||
baisser;Verbe
|
||||
battre;Verbe
|
||||
boire;Verbe
|
||||
bouger;Verbe
|
||||
brûler;Verbe
|
||||
cacher;Verbe
|
||||
calmer;Verbe
|
||||
casser;Verbe
|
||||
cesser;Verbe
|
||||
changer;Verbe
|
||||
chanter;Verbe
|
||||
charger;Verbe
|
||||
chercher;Verbe
|
||||
choisir;Verbe
|
||||
commencer;Verbe
|
||||
comprendre;Verbe
|
||||
compter;Verbe
|
||||
conduire;Verbe
|
||||
connaître;Verbe
|
||||
continuer;Verbe
|
||||
coucher;Verbe
|
||||
couper;Verbe
|
||||
courir;Verbe
|
||||
couvrir;Verbe
|
||||
craindre;Verbe
|
||||
crier;Verbe
|
||||
croire;Verbe
|
||||
danser;Verbe
|
||||
décider;Verbe
|
||||
découvrir;Verbe
|
||||
dégager;Verbe
|
||||
demander;Verbe
|
||||
descendre;Verbe
|
||||
désoler;Verbe
|
||||
détester;Verbe
|
||||
détruire;Verbe
|
||||
devenir;Verbe
|
||||
deviner;Verbe
|
||||
devoir;Verbe
|
||||
dire;Verbe
|
||||
disparaître;Verbe
|
||||
donner;Verbe
|
||||
dormir;Verbe
|
||||
échapper;Verbe
|
||||
écouter;Verbe
|
||||
écrire;Verbe
|
||||
éloigner;Verbe
|
||||
embrasser;Verbe
|
||||
emmener;Verbe
|
||||
empêcher;Verbe
|
||||
emporter;Verbe
|
||||
enlever;Verbe
|
||||
entendre;Verbe
|
||||
entrer;Verbe
|
||||
envoyer;Verbe
|
||||
espérer;Verbe
|
||||
essayer;Verbe
|
||||
être;Verbe
|
||||
éviter;Verbe
|
||||
excuser;Verbe
|
||||
exister;Verbe
|
||||
expliquer;Verbe
|
||||
faire;Verbe
|
||||
falloir;Verbe
|
||||
fermer;Verbe
|
||||
filer;Verbe
|
||||
finir;Verbe
|
||||
foutre;Verbe
|
||||
frapper;Verbe
|
||||
gagner;Verbe
|
||||
garder;Verbe
|
||||
glisser;Verbe
|
||||
habiter;Verbe
|
||||
ignorer;Verbe
|
||||
imaginer;Verbe
|
||||
importer;Verbe
|
||||
inquiéter;Verbe
|
||||
installer;Verbe
|
||||
intéresser;Verbe
|
||||
inviter;Verbe
|
||||
jeter;Verbe
|
||||
jouer;Verbe
|
||||
jurer;Verbe
|
||||
lâcher;Verbe
|
||||
laisser;Verbe
|
||||
lancer;Verbe
|
||||
lever;Verbe
|
||||
lire;Verbe
|
||||
maintenir;Verbe
|
||||
manger;Verbe
|
||||
manquer;Verbe
|
||||
marcher;Verbe
|
||||
marier;Verbe
|
||||
mener;Verbe
|
||||
mentir;Verbe
|
||||
mettre;Verbe
|
||||
monter;Verbe
|
||||
montrer;Verbe
|
||||
mourir;Verbe
|
||||
naître;Verbe
|
||||
obliger;Verbe
|
||||
occuper;Verbe
|
||||
offrir;Verbe
|
||||
oser;Verbe
|
||||
oublier;Verbe
|
||||
ouvrir;Verbe
|
||||
paraître;Verbe
|
||||
parler;Verbe
|
||||
partir;Verbe
|
||||
passer;Verbe
|
||||
payer;Verbe
|
||||
penser;Verbe
|
||||
perdre;Verbe
|
||||
permettre;Verbe
|
||||
plaire;Verbe
|
||||
pleurer;Verbe
|
||||
porter;Verbe
|
||||
poser;Verbe
|
||||
pousser;Verbe
|
||||
pouvoir;Verbe
|
||||
préférer;Verbe
|
||||
prendre;Verbe
|
||||
préparer;Verbe
|
||||
présenter;Verbe
|
||||
prévenir;Verbe
|
||||
prier;Verbe
|
||||
promettre;Verbe
|
||||
proposer;Verbe
|
||||
protéger;Verbe
|
||||
quitter;Verbe
|
||||
raconter;Verbe
|
||||
ramener;Verbe
|
||||
rappeler;Verbe
|
||||
recevoir;Verbe
|
||||
reconnaître;Verbe
|
||||
réfléchir;Verbe
|
||||
refuser;Verbe
|
||||
regarder;Verbe
|
||||
rejoindre;Verbe
|
||||
remarquer;Verbe
|
||||
remettre;Verbe
|
||||
remonter;Verbe
|
||||
rencontrer;Verbe
|
||||
rendre;Verbe
|
||||
rentrer;Verbe
|
||||
répéter;Verbe
|
||||
répondre;Verbe
|
||||
reposer;Verbe
|
||||
reprendre;Verbe
|
||||
ressembler;Verbe
|
||||
rester;Verbe
|
||||
retenir;Verbe
|
||||
retirer;Verbe
|
||||
retourner;Verbe
|
||||
retrouver;Verbe
|
||||
réussir;Verbe
|
||||
réveiller;Verbe
|
||||
revenir;Verbe
|
||||
rêver;Verbe
|
||||
revoir;Verbe
|
||||
rire;Verbe
|
||||
risquer;Verbe
|
||||
rouler;Verbe
|
||||
sauter;Verbe
|
||||
sauver;Verbe
|
||||
savoir;Verbe
|
||||
sembler;Verbe
|
||||
sentir;Verbe
|
||||
séparer;Verbe
|
||||
serrer;Verbe
|
||||
servir;Verbe
|
||||
sortir;Verbe
|
||||
souffrir;Verbe
|
||||
sourire;Verbe
|
||||
souvenir;Verbe
|
||||
suffire;Verbe
|
||||
suivre;Verbe
|
||||
taire;Verbe
|
||||
tendre;Verbe
|
||||
tenir;Verbe
|
||||
tenter;Verbe
|
||||
terminer;Verbe
|
||||
tirer;Verbe
|
||||
tomber;Verbe
|
||||
toucher;Verbe
|
||||
tourner;Verbe
|
||||
traîner;Verbe
|
||||
traiter;Verbe
|
||||
travailler;Verbe
|
||||
traverser;Verbe
|
||||
tromper;Verbe
|
||||
trouver;Verbe
|
||||
tuer;Verbe
|
||||
utiliser;Verbe
|
||||
valoir;Verbe
|
||||
vendre;Verbe
|
||||
venir;Verbe
|
||||
vivre;Verbe
|
||||
voir;Verbe
|
||||
voler;Verbe
|
||||
vouloir;Verbe
|
|
208916
bin/lab6/french_dictionary.txt
Normal file
208916
bin/lab6/french_dictionary.txt
Normal file
File diff suppressed because it is too large
Load Diff
BIN
bin/series/C05S03_loops/C05EX01a.class
Normal file
BIN
bin/series/C05S03_loops/C05EX01a.class
Normal file
Binary file not shown.
BIN
bin/series/C05S03_loops/C05EX01b.class
Normal file
BIN
bin/series/C05S03_loops/C05EX01b.class
Normal file
Binary file not shown.
BIN
bin/series/C05S03_loops/C05EX02.class
Normal file
BIN
bin/series/C05S03_loops/C05EX02.class
Normal file
Binary file not shown.
BIN
bin/series/C05S03_loops/C05EX03.class
Normal file
BIN
bin/series/C05S03_loops/C05EX03.class
Normal file
Binary file not shown.
BIN
bin/series/C05S03_loops/C05EX04a.class
Normal file
BIN
bin/series/C05S03_loops/C05EX04a.class
Normal file
Binary file not shown.
BIN
bin/series/C05S03_loops/C05EX04c.class
Normal file
BIN
bin/series/C05S03_loops/C05EX04c.class
Normal file
Binary file not shown.
BIN
bin/series/C05S03_loops/C05EX04d.class
Normal file
BIN
bin/series/C05S03_loops/C05EX04d.class
Normal file
Binary file not shown.
BIN
bin/series/C05S03_loops/C05EX07.class
Normal file
BIN
bin/series/C05S03_loops/C05EX07.class
Normal file
Binary file not shown.
BIN
bin/series/C05S03_loops/C05EX08a.class
Normal file
BIN
bin/series/C05S03_loops/C05EX08a.class
Normal file
Binary file not shown.
BIN
bin/series/C05S03_loops/C05EX08b.class
Normal file
BIN
bin/series/C05S03_loops/C05EX08b.class
Normal file
Binary file not shown.
BIN
bin/series/C05S03_loops/C05EX08c.class
Normal file
BIN
bin/series/C05S03_loops/C05EX08c.class
Normal file
Binary file not shown.
BIN
bin/series/C05S03_loops/C05EX08d.class
Normal file
BIN
bin/series/C05S03_loops/C05EX08d.class
Normal file
Binary file not shown.
BIN
bin/series/C05S03_loops/C05EX08e.class
Normal file
BIN
bin/series/C05S03_loops/C05EX08e.class
Normal file
Binary file not shown.
BIN
bin/series/C05S03_loops/C05EX08f.class
Normal file
BIN
bin/series/C05S03_loops/C05EX08f.class
Normal file
Binary file not shown.
BIN
bin/series/C05S03_loops/serie3.pdf
Normal file
BIN
bin/series/C05S03_loops/serie3.pdf
Normal file
Binary file not shown.
BIN
bin/series/C06S04_fonctions/C05EX01.class
Normal file
BIN
bin/series/C06S04_fonctions/C05EX01.class
Normal file
Binary file not shown.
BIN
bin/series/C06S04_fonctions/serie4.pdf
Normal file
BIN
bin/series/C06S04_fonctions/serie4.pdf
Normal file
Binary file not shown.
BIN
bin/series/theorie/C04EX0501.class
Normal file
BIN
bin/series/theorie/C04EX0501.class
Normal file
Binary file not shown.
BIN
bin/series/theorie/C04EX0502.class
Normal file
BIN
bin/series/theorie/C04EX0502.class
Normal file
Binary file not shown.
BIN
bin/series/theorie/C05EX01a.class
Normal file
BIN
bin/series/theorie/C05EX01a.class
Normal file
Binary file not shown.
BIN
bin/series/theorie/C05EX01b.class
Normal file
BIN
bin/series/theorie/C05EX01b.class
Normal file
Binary file not shown.
BIN
bin/series/theorie/C05EX02.class
Normal file
BIN
bin/series/theorie/C05EX02.class
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user