[PDF] Corrections proposées par Mr ALIOUI Dhia Bac pratique





Previous PDF Next PDF



Correction bac pratique 2014 g1

26 mai 2014 if (i mod somchiffre(i)=0) and (premier(i-1))then begin writeln(i ' est un nombre de Harshad.'); readln; end; end. Correction bac pratique 2014 ...



Corrections proposées par Mr Adnen Smii Propositions de

27 mai 2014 Propositions de correction. Bac Pratique informatique. 4 scientifiques -27 mai 2014-8h. Program BP_2014_27_Mai_8H; uses wincrt;.



Correction bac pratique informatique Section : Mathématiques

27 mai 2014 Correction bac pratique informatique. Section : Mathématiques. Sciences expérimentales. Sciences techniques. Date : 26 mai 2014 à. 8:00.



Corrections proposées par Mr ALIOUI Dhia Bac pratique

26 mai 2014 Corrections proposées par Mr ALIOUI Dhia. Bac pratique informatique sections scientifiques. 26 mai 2014 – 8h program bac2014 ; uses wincrt ;.



Corrigés Bac pratique Informatique

Corrigés Bac pratique Informatique. Correction proposée par BenHmida Haythem mai 2014 (). Mardi Mai 27 à 8H program B2705148H; uses wincrt;.



Pratique Si Algo 22 mai 2014-8h

22 mai 2014 Page 1. D e v o ir s e. t e x a m e n s s u r. : w w w .k ite b .n e t.



Pratique Si Algo 22 mai 2014-8h

22 mai 2014 Page 1. D e v o ir s e. t e x a m e n s s u r. : w w w .k ite b .n e t.



Proposé par Professeur Nesrine Rid@ne Page 1 Correction Sujet

26 mai 2014 Correction Sujet 26 Mai 2014. 8h program S26_05_2014_8h; uses wincrt; var nm:integer;. {saisie de n et m} procedure saisie (var n



Corrigés Bac Pratique Informatique - Kiteb.net

Correction proposée par. M me. FATMA Knani Gazzeh. Corrigés Bac Pratique Informatique. Section Math & Sciences & Technique. Lundi 26 mai 2014.



Corrigés Bac Pratique Informatique - Kiteb.net

Corrigés Bac Pratique Informatique Mardi 27 mai 2014 ... Correction proposée par Mme FATMA Knani Gazzeh. - Page 2 sur 6 -. For i:=1 to x1 do.



Epreuves pratiques bac 2014 - Kitebnet

Propositions des élèves (corrections des sujets BAC PRATIQUE Informatique 2014) Lundi 26 mai 2014 : 8h 9h30 11h et 14h Correction pdf téléch 8114 fois



[PDF] Correction bac pratique 2014 g1 - Kitebnet

26 mai 2014 · Bac pratique 26 mai 2014 Prof:Néjib ILAHI LYCEE ENFIDHA SOUSSE Page 1 sur 4 Correction bac pratique 2014 g1



Tous Les sujets Bac info 2014 avec correction - Exabac

Sujets BAC session principal et contrôle Toutes les matières avec correction Matière Philosophie · Arabe · Français · Anglais · Informatique · Math 



Correction BAC pratique (informatique) 2014 - section scientifique

9 mar 2019 · Bac pratique 2014 section scientifique corrigé par Yahya Ben brahim Correction BAC Durée : 24:34Postée : 9 mar 2019



[PDF] Examen du baccalauréat 2014 Corrigé de lépreuve dInformatique

Corrigé Informatique – Math + Sc Exp + Sc Tech - Bac 2014 Page 1 / 4 Examen du baccalauréat 2014 Corrigé de l'épreuve d'Informatique



[PDF] Corrigés bac pratique informatique - apcpedagogie

Corrigés bac pratique informatique Sections Science de l'informatique 22 Mai 2014(10h30) Corrigé Sujet le 22 Mai 2014 à 10h30 program mai_28_g2;



Corrigés bac pratique informatique - apcpedagogie

Corrigés bac pratique informatique Sections Science de l'informatique 22 Mai 2014(8h30) Corrigé Sujet le 22 Mai 2014 à 8h30 program suite_arith;



Les sujets du bac pratique avec correction: - Informatique

Acrobat Reader doit être installé sur votre ordinateur avant de pouvoir ouvrir les documents PDF Appuyez sur le bouton ci-dessus pour télécharger le logiciel



Devoir Pratique PDF Domaines de linformatique - Scribd

Devoir Pratique Programmation Pascal BAC Technique&Sciences by rouaissir Devoir de Synthèse N°2 - Algorithmique - Bac Informatique (2013-2014) Mr shili 



Corrigés Bac pratique Informatique - Kitebnet - Examen corrige

fait qu'il s'agit d'une proposition de correction établie par nos soins et que ce Nos catalogues à télécharger (PDF) Vuibert Guide Concours et Diplômes - 

:

Corrections proposées par Mr ALIOUI Dhia

Bac pratique informatique sections scientifiques

26 mai 2014 - 8h

program bac2014 ; uses wincrt ; var m,n : integer ; procedure saisir(var n,m : integer ) ; begin repeat write('Donner la valeur de N : ') ; readln(n) ; until n>=100 ; repeat write('Donner la valeur de M : ') ; readln(m) ; until m>n ; end ; function harshad ( Nb : integer ) : boolean ; var j,somme,a,e : integer ; ch : string ; test : boolean ; begin str(NB,ch) ; somme:=0 ; for j:=1 to length(ch) do begin val(ch[j],a,e) ; somme:=somme+a ; end ; if nb mod somme = 0 then test:=true else test := false ; harshad:=test ; end ;

Page 1Corectinosno péoainiMtALnIIIOUcsoDOaos

Corrections proposées par Mr ALIOUI Dhia

function premier( NB : integer ) : boolean ; var k:integer ; test : boolean ; begin test := true ; k:=nb-1 ; repeat if nb mod k = 0 then test := false ; k:=k-1 ; until (k=2) or (test=false) ; premier:=test ; end ; procedure affiche(n,m : integer ) ; var i:integer ; begin for i:=n to m do begin if (harshad(i)=true) and (premier(i-1)=true) then writeln(i,' est Harshad et son predesseur ',i-1,' est un nombre premier. ') ; end ; end ; (******** PROGRAMME PRINCIPALE ********) BEGIN

SAISIR(N,M) ;

AFFICHE(N,M) ;

END .

Page 2Corectinosno péoainiMtALnIIIOUcsoDOaos

Corrections proposées par Mr ALIOUI Dhia

Bac pratique informatique sections scientifiques

26 mai 2014 - 9h30

program bac2014 ; uses wincrt ; var nb : integer ; procedure saisie ( var Nb : integer ) ; begin repeat write('Saisir la valeur du nombre entier : ') ; readln(nb) ; until nb>=4 ; end ; function premier ( n : integer ) : boolean ; var test : boolean ; k:integer ; begin test := true ; if n=1 then test:=false else for k:=2 to n-1 do begin if n mod k =0 then test :=false ; end ; premier := test ; end ;

Page 3Corectinosno péoainiMtALnIIIOUcsoDOaos

Corrections proposées par Mr ALIOUI Dhia

procedure couples( nb : integer ) ; var T1,T2: array[0..100] of integer ; i,c:integer ; begin c:=0 ; for i:=1 to nb-1 do begin if (premier(i)=true) and (premier(nb-i)=true) then begin c:=c+1 ;

T1[c]:=i ;

T2[c]:=nb-i ;

end ; end ; write(nb,' possede ',c,' couples des nombres entier : ') ; for i:=1 to c do begin write('(',T1[i],',',T2[i],'),' ) ; end ; end ; (********* PROGRAMME PRINCIPALE *********) BEGIN

SAISIE(Nb) ;

COUPLES(Nb) ;

END.

Page 4Corectinosno péoainiMtALnIIIOUcsoDOaos

Corrections proposées par Mr ALIOUI Dhia

Bac pratique informatique sections scientifiques

26 mai 2014 - 11h

program bac2014 ; uses wincrt ; type tab=array[0..100] of integer ; var T:tab ; n : integer ; procedure saisie(var n : integer ) ; begin repeat write('Donner la taille du tableau : ') ; readln(n) ; until n in [5..30] ; end ; function verif(T:tab ; n:integer ; NB : integer ):boolean ; var test:boolean ; j: integer ; begin test:= true ; for j:=1 to n do begin if NB=T[j] then test := false end ; verif:= test ; end ;

Page 5Corectinosno péoainiMtALnIIIOUcsoDOaos

Corrections proposées par Mr ALIOUI Dhia

procedure remplir(var T:tab ; n:integer ) ; var i:integer ; begin repeat write('Donner le premier element du tableau : ') ; readln(T[1]) ; until T[1] in [1..99] ; for i:=2 to n do begin repeat write('Donner le ',i,' eme element du tableau : ') ; readln(T[i]) ; until (T[i] in [1..99]) and (verif(T,i-1,T[i])=true) ; end ; end; procedure tri( var T:tab ; n: integer ) ; var TI:tab ; i,c:integer ; begin for i:=1 to 99 do begin

TI[i]:=0 ;

end ; for i:=1 to n do begin

TI[T[i]]:=T[i] ;

end ; c:=1 ; for i:=1 to 99 do begin if TI[i]<>0 then begin

T[c]:=TI[i] ;

c:=c+1 ; end ; end; end ;

Page 6Corectinosno péoainiMtALnIIIOUcsoDOaos

Corrections proposées par Mr ALIOUI Dhia

procedure affiche(T: tab ; n:integer ) ; var i:integer ; begin writeln('Le tableau trié : ') ; for i:=1 to n do begin write(T[i],' ') ; end ; end ; (******** PROGRAMME PRINCIPALE ********) BEGIN

SAISIE(N) ;

REMPLIR(T,N) ;

TRI(T,N) ;

AFFICHE(T,N) ;

END.

Page 7Corectinosno péoainiMtALnIIIOUcsoDOaos

Corrections proposées par Mr ALIOUI Dhia

Bac pratique informatique sections scientifiques

26 mai 2014 - 14h

program bac2014 ; uses wincrt ; type tab=array[0..100] of integer ; var i,n,c1,c2: integer ;

T,TA,TB: tab ;

procedure saisie(var n: integer ) ; begin repeat write('Donner la taille du tableau : ') ; readln(n) ; until n in [5..25] ; end ; procedure remplir(var T:tab ; n:integer ) ; var i:integer ; begin repeat write('Donner le premier element du tableau : '); readln(T[1]) ; until T[1]>0 ; for i:=2 to n do begin repeat write('Donner le ',i,' eme element du tableau : '); readln(T[i]) ; until T[i]>0 ; end ; end ; function abondant(nb : integer ) : boolean ; var test : boolean ; s,i:integer ; begin s:=0 ; for i:=1 to nb-1 do begin if nb mod i=0 then

Page 8Corectinosno péoainiMtALnIIIOUcsoDOaos

Corrections proposées par Mr ALIOUI Dhia

s:=s+i ; end ; if nb>s then test := true else test:= false ; abondant:= test ; end ; function deficient(nb : integer ) : boolean ; var test : boolean ; s,i:integer ; beginquotesdbs_dbs15.pdfusesText_21
[PDF] correction bac pratique informatique 2015

[PDF] correction bac pratique informatique 2016

[PDF] bac latin notation

[PDF] programme latin bac 2017

[PDF] conseils bac de latin

[PDF] bac grec oral

[PDF] liban 2015 maths es

[PDF] lv3 bac niveau

[PDF] lv3 bac italien

[PDF] un investisseur souhaite acheter un appartement

[PDF] metropole 20 juin 2014 maths es

[PDF] polynesie juin 2014 maths es

[PDF] sujet bac maths es 2015

[PDF] liban mai 2013 maths s corrigé

[PDF] sujet bac maths st2s corrigé