Skip to content

Instantly share code, notes, and snippets.

View Fcmam5's full-sized avatar
🇩🇿
I may be slow to respond.

Fortas Abdeldjalil Fcmam5

🇩🇿
I may be slow to respond.
View GitHub Profile
package Personne;
import ArticleMediateque.Livre;
import ArticleMediateque.Mediatheque;
import ArticleMediateque.Produit;
import java.util.ArrayList;
/**
* Created by fcmam5 on 05/05/15.
*/
@Fcmam5
Fcmam5 / GestionMediatheque.java
Created May 7, 2015 19:58
Stp Kameli les autres Case, ligne 61 w ro7
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();
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();
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();
@Fcmam5
Fcmam5 / Mediathequev2_src_Acteur.java
Last active August 29, 2015 14:20
Created by Abdeldjalil & Khaled
/**
* Created by Fortas & Gueroudj
*/
public class Acteur extends Personne {
public Acteur(String fullName) {
super(fullName);
}
}
#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
@Fcmam5
Fcmam5 / src_Main.java
Created September 19, 2015 22:19
POO TP6
import exo6.Exo6;
import java.util.Scanner;
/**
* Created by fcmam5 on 19/09/15.
*/
public class Main {
public static void main(String[] args) {
@Fcmam5
Fcmam5 / src_Main.java
Created September 19, 2015 22:21
POO TP6 Finally it works x)
import exo6.Exo6;
import java.util.Scanner;
/**
* Created by fcmam5 on 19/09/15.
*/
public class Main {
public static void main(String[] args) {
@Fcmam5
Fcmam5 / HichemTri.py
Created October 26, 2015 18:13
Hichem's "Tri" algorithm in python, it works !
__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]
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int calcul1(int n){
static int call1=0;
call1++;
if(n==0)
return 1;
else