This file contains 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
public class CompteurNChiffres | |
{ | |
// Attributs | |
private int km; | |
private int limite; | |
// M�thodes | |
// Constructeur | |
public CompteurNChiffres(int n) | |
{ |
This file contains 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 statistics | |
# Use: statistics.mean(liste) | |
from statistics import mean | |
# Use: mean(liste) | |
from operator import attrgetter | |
import csv | |
import operator | |
This file contains 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
Compilation=gcc | |
projet_final.exe : projet_finale_sous_prog.o projet_finale_main.o | |
$(Compilation) projet_finale_main.o projet_finale_sous_prog.o -o projet_final.exe | |
@echo "--------------------------------------------------------- " | |
@echo "--------------------------------------------------------- " | |
@echo "vous pouvez lancez le programme avec la commande ./projet_final.exe " | |
@echo "--------------------------------------------------------- " | |
@echo "-----------------------------------mes salutations ----------------------------------------------- " | |
projet_finale_main.o : projet_finale_main.c projet_finale.h |
This file contains 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
with ada.text_io; use ada.text_io ; | |
with ada.integer_text_io; use ada.integer_text_io; | |
with Ada.IO_Exceptions ; use Ada.IO_Exceptions; | |
procedure caisse3 is | |
------ declaration de lenregistrement -------- | |
type enregistrement is record | |
id : integer ; -- identifiant de lemployer | |
jour : integer; -- jour de travaille |