This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package Personne; | |
| import ArticleMediateque.Livre; | |
| import ArticleMediateque.Mediatheque; | |
| import ArticleMediateque.Produit; | |
| import java.util.ArrayList; | |
| /** | |
| * Created by fcmam5 on 05/05/15. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Scanner; | |
| import java.util.concurrent.LinkedBlockingDeque; | |
| /** | |
| * Created by fcmam5 on 07/05/15. | |
| */ | |
| public class GestionMediatheque { | |
| public static void main (String []args){ | |
| Mediatheque mediatheque =new Mediatheque(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Scanner; | |
| import java.util.concurrent.LinkedBlockingDeque; | |
| /** | |
| * Created by fcmam5 on 07/05/15. | |
| */ | |
| public class GestionMediatheque { | |
| public static void main(String[] args) { | |
| Mediatheque mediatheque = new Mediatheque(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Scanner; | |
| import java.util.concurrent.LinkedBlockingDeque; | |
| /** | |
| * Created by fcmam5 on 07/05/15. | |
| */ | |
| public class GestionMediatheque { | |
| public static void main(String[] args) { | |
| Mediatheque mediatheque = new Mediatheque(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Created by Fortas & Gueroudj | |
| */ | |
| public class Acteur extends Personne { | |
| public Acteur(String fullName) { | |
| super(fullName); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<stdio.h> | |
| #include<stdlib.h> | |
| //#include<conio.h> for Windows | |
| /** | |
| * By Fortas Abdeldjalil. | |
| * Groupe 03 | |
| * Mail: [email protected] | More: About.me/Fcmam5 | |
| **/ | |
| //type ptr: pointeur sur cellule |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import exo6.Exo6; | |
| import java.util.Scanner; | |
| /** | |
| * Created by fcmam5 on 19/09/15. | |
| */ | |
| public class Main { | |
| public static void main(String[] args) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import exo6.Exo6; | |
| import java.util.Scanner; | |
| /** | |
| * Created by fcmam5 on 19/09/15. | |
| */ | |
| public class Main { | |
| public static void main(String[] args) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __author__ = 'fcmam5' | |
| T=[1,3,2,7,0] | |
| indice = 1 | |
| print(T) #Avant | |
| for i in range(4): | |
| if T[indice]>T[i]: | |
| for j in range(indice,4): | |
| if T[i]<T[j]: | |
| T[i],T[j]=T[j],T[i] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<stdio.h> | |
| #include<stdlib.h> | |
| #include<time.h> | |
| int calcul1(int n){ | |
| static int call1=0; | |
| call1++; | |
| if(n==0) | |
| return 1; | |
| else |
OlderNewer