[PDF] Corrections proposées par Mr Adnen Smii Propositions de





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 Adnen Smii

Propositions de correction

Bac Pratique informatique

4 scientifiques -27 mai 2014-8h

Program BP_2014_27_Mai_8H;

uses wincrt; Type

Tab=Array[1..50] of integer;

VAR

T1,T2:Tab;

N1,N2,N,M,A1,A2:integer;

Procedure Saisie(var N,M:integer);

Begin

Repeat

write('Donner N et M : '); readln(N,M);

Until(n>=10) and (N<=M) and (M<=999);

End;

Function Som_Diviseur(x:integer):integer;

var i,S:integer; Begin S:=0;

For i:=1 to( x div 2) do

begin if( x MOD i= 0)then

S:=S+i;

end;

Som_Diviseur :=S;

End; Procedure Remplissage(var T:Tab;var Taille:integer;x:integer); Begin

Taille :=1; T[1] :=x;

Repeat

Taille :=Taille+1;

T[Taille] :=Som_Diviseur(T[Taille-1]);

Until (T[Taille] = T[Taille-1])OR (T[Taille] = 1); End;

Procedure Affichage(T:Tab;N:integer);

Page 1Corectinosno péoainiMtAdnSSSmPcsoBmaos

Corrections proposées par Mr Adnen Smii

var i:integer; Begin

For i:=1 to N do

write(T[i],'|'); End;

Function Recherche(T:Tab;N,x:integer):Boolean;

var i:integer; Begin i:=1;

While(i<=N) and (T[i] <> x) do

i:=i+1;

Recherche :=(i<=N);

End; Function NB_Commun(T1,T2:Tab;N1,N2:integer):integer; var i,NB:integer; Begin

NB:=0;

For i:=1 to N1 do

begin if(Recherche(T2,N2,T1[i]))then

NB:=NB+1;

end;

NB_Commun:=NB;

End; BEGIN

Saisie(N,M);

Remplissage(T1,N1,N);

Remplissage(T2,N2,M);

A1:=-1;

if(T1[N1]-T1[N1-1] = 0)then writeln('Les termes de la suite de ',N,' ne forment pas une suite aliquote') else Begin writeln('Les termes de la suite de ',N,' forment une suite aliquote') ;

Affichage(T1,N1);

A1:=1;

writeln;

Page 2Corectinosno péoainiMtAdnSSSmPcsoBmaos

Corrections proposées par Mr Adnen Smii

end;

A2:=-1;

if(T2[N2]-T2[N2-1] = 0)then writeln('Les termes de la suite de ',M,' ne forment pas une suite aliquote') else Begin writeln('Les termes de la suite de ',M,' forment une suite aliquote') ;

Affichage(T2,N2);

A2:=1;

writeln; end; if(A1=1) and (A2=1)then begin writeln('le nombre des termes communs ebntre ces deux suites aliquotes = ',NB_Commun(T1,T2,N1,N2)); end; END.

Page 3Corectinosno péoainiMtAdnSSSmPcsoBmaos

Corrections proposées par Mr Adnen Smii

Propositions de correction

Bac Pratique informatique

4 scientifiques -27 mai 2014-9h30

Program Mardi27Mai2014_9H30;

uses wincrt; var ch:String;

Function NB_Arobe(ch:String):integer;

var i,NB:integer; Begin

NB:=0;

For i:=1 to Length(ch) do

begin if(ch[i] = '@')then

NB:=NB+1;

end;

NB_Arobe :=NB;

End;

Function Valide(ch:String):Boolean;

var

V1,V2:Boolean;

i:integer; Begin i:=1;

V1:=True;

While(i<=Length(ch)) and(V1=True) do

begin if(upcase(ch[i]) in ['A'..'Z','0'..'9','@','_','-','.'])then i:=i+1 else

V1:=False;

end;

V2:= Not((ch[POS('@',ch)-1] in ['_','-','.']));

Valide := (V1) and (V2) and (NB_Arobe(ch) = 1);

End;

Procedure Saisie(var ch:String);

Begin

Page 4Corectinosno péoainiMtAdnSSSmPcsoBmaos

Corrections proposées par Mr Adnen Smii

Repeat

write('@ Mail : '); readln(ch); Until(upcase(ch[1]) in ['A'..'Z']) and (Valide(ch)); End;

Function Mot_de_passe(ch:String):String;

var

Motpass:String;

Begin

Mot_de_passe:=Motpass;

End; BEGIN

Saisie(ch);

writeln('Mot de passe : ',Mot_de_passe(ch)); END.

Page 5Corectinosno péoainiMtAdnSSSmPcsoBmaos

Corrections proposées par Mr Adnen Smii

Propositions de correction

Bac Pratique informatique

4 scientifiques -27 mai 2014-11h

Program Mardi_27_MAI_2014_11H;

uses wincrt; TYPE

Tab = Array[1..40] of integer;

VAR

T,V:Tab;

NT,NV :integer;

Procedure Saisie (var N:integer);

Begin

Repeat

write('Taille du tableau [5..40]: '); readln(N);

Until(N in [5..40]);

End;

Procedure Remplissage(var T:Tab;N:integer);

var i:integer; Begin

For i:=1 to N do

begin

Repeat

write('T[',i,'] = '); readln(T[i]);

Until(T[i] > 0);

end; End;

Function Suite(n:integer):integer;

var i,U:integer; Begin U:=1;

For i:=1 to n do

U:=3*U-1;

Suite :=U;

End;

Page 6Corectinosno péoainiMtAdnSSSmPcsoBmaos

Corrections proposées par Mr Adnen Smii

Function Appartient(x:integer):boolean;

var i:integer; Begin i:=-1;

Repeat

i:=i+1;

Until(Suite(i) >= x);

Appartient :=(Suite(i) = x);

End; Procedure Transfert(T:Tab;var V:Tab;NT:integer;var NV:integer); var i:integer; Begin

NV:=0;

For i:=1 to NT do

begin if(Appartient(T[i]))then begin

NV:=NV+1;

V[NV] :=T[i];

end; end; End;

Procedure Affichage(V:Tab;NV:integer);

var i:integer; Begin if(NV=0)then writeln('Aucun élément de T ne correspond à un terme de la suite U') else begin write(V[1],'|');

For i:=2 to NV do

begin if(V[i] <>V[i-1])then write(V[i],'|'); end; end; End;

Page 7Corectinosno péoainiMtAdnSSSmPcsoBmaos

Corrections proposées par Mr Adnen Smii

Procedure Trier(var T:Tab;N:integer);

var i,aux:integer; permut:boolean; Begin

Repeat

Permut :=False;

For i:=1 to (N-1) do

begin if(T[i]>T[i+1])then begin

Aux :=T[i];

T[i]:=T[i+1];

T[i+1]:=Aux;

end; end;

Until(Permut = False);

End; BEGIN

Saisie(NT);

Remplissage(T,NT);

Transfert(T,V,NT,NV);

Trier(V,NV);

Affichage(V,NV);

END.

Page 8Corectinosno péoainiMtAdnSSSmPcsoBmaos

Corrections proposées par Mr Adnen Smii

Propositions de correction

Bac Pratique informatique

4 scientifiques -27 mai 2014-14h

Program Mardi_27_Mai_2014_14H;

uses wincrt; var

A,B:Longint;

Procedure Saisie(var A,B:longint);

Begin

Repeat

write('Bornes de l''intervalle (>=100 : ');

Readln(A,B);

Until(A>=100) and (A End;

Function Polydivisible (N:Longint):Boolean;

var i,e:integer; x:longint;

Poly:Boolean;

ch,Test:String; Begin i:=2;STR(N,ch);

Test:=Ch[1]+ch[2]; VAL(Test,x,e);Poly:=True;

while(i<=Length(ch)) and (poly=true) do begin if(x MOD i = 0)then begin i:=i+1;

Test:=Test+ch[i];

VAL(Test,x,e);

end else

Poly:=False;

end;

Polydivisible :=Poly;

End;

Page 9Corectinosno péoainiMtAdnSSSmPcsoBmaos

Corrections proposées par Mr Adnen Smii

Procedure Affichage(A,B:longint);

var i:longint; Begin

For i:=A to B do

begin if(Polydivisible(i))then BEGIN writeln(i);

READLN;

end; end; End; BEGIN

Saisie(A,B);

Affichage(A,B);

END.

Page 10Corectinosno péoainiMtAdnSSSmPcsoBmaos

quotesdbs_dbs27.pdfusesText_33

[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é