SERIE N 1. 4 ème Année informatiques. Exercice 3. Exercice 4 (Manuel Scolaire) Page [1] Les enregistrements & Les fichiers Infoslpm.e-monsite.

Size: px
Start display at page:

Download "SERIE N 1. 4 ème Année informatiques. Exercice 3. Exercice 4 (Manuel Scolaire) Page [1] Les enregistrements & Les fichiers Infoslpm.e-monsite."

Transcription

1 Exercice 3 SERIE N 1 program exercice3; uses wincrt; type st = string[30]; fch = file of st; var f:fch; nom: st; b : integer; procedure saisie(var f:fch); var vil:st; rep:char; write('donner le nom d''une ville : '); readln(vil); write(f,vil); write('voulez vous ajouter une autre ville : '); readln(rep); until upcase(rep) in ['O','N']; until upcase(rep)='n'; procedure recherche(var f:fch); var vil:st; writeln('les villes qui commencent par A : ' ); read(f,vil); if upcase(vil[1]) = 'A' then writeln(vil); procedure recherche_tout(var f:fch); var Exercice 4 (Manuel Scolaire) procedure creation (var nomi : typfile ; nome : string) ; let:char;vil:st; for let := 'A' to 'Z' do read(f,vil); if upcase(vil[1]) = let then writeln(vil); {===== p.p =====} write ('entrer le nom du fichier : ');readln (nom); assign (f, nom + '.dat'); {$i-} {on désactive les erreurs d'e/s} reset (f); {$i+} {on réactive les erreurs} if ioresult<>0 then rewrite(f); saisie(f); recherche(f);readkey; writeln; writeln('les villes selon l''ordre alphabétique : ' ); writeln; recherche_tout(f); end. assign (nomi, nome) ; rewrite (nomi) ; Page [1]

2 procedure saisie (var nomi : typfile) ; var i, n, e : integer ; write ('nombre d''entier : ') ; readln (n) ; until n in [1..100] ; for i := 1 to n do readln (e) ; write (nomi, e) ; close(nomi) procedure transfert (var T : vect ; var nomi1, nomi2 : typfile) ; var i : integer ; reset (nomi1) ; reset (nomi2) ; for i := 1 to filesize(nomi1) do Exercice 5 program cabinet_medecin; uses wincrt; type date = record jour:1..31; mois:1..12; annee:integer; patient=record num:integer; nom: string[30]; date_nais:date; date_rdv:date; fp=file of patient; var f:fp; choix:integer; (****************************) procedure creation(var f:fp); assign (f, 'c:\cabinet.dat'); {$i-} reset (f); read(nomi1, T[i]) ; if T[i]>0 then write (nomi2, T[i]) ; close (nomi1) ; close (nomi2) ; ***Programme Principale *** partie declaration {type typfile = file of integer ; vect = array [1..100] of integer ; const nome1 = 'c:\nombre1.fch'; nome2 = 'c:\nombre2.fch'; var T : vect ; nomi1, nomi2 : typfile ;} creation (nomi1, nome1) ; creation (nomi2, nome2) ; saisie (nomi1); transfert (T, nomi1, nomi2) ; end. {$i+} if ioresult<>0 then rewrite(f); (*****************) procedure choisir (var choix:integer); clrscr; writeln; writeln(' *******************'); writeln(' * 1. ajouter un nouveau patient *'); writeln(' * 2. modifier les informations relatives à un patient *'); writeln(' * 3. attribuer un rdv pour un patient *'); writeln(' * 4. afficher les informations relatives à un patient *'); writeln(' * 5. afficher la liste des patients *'); writeln(' * 6. afficher la liste des patients ayant un rdv donné *'); writeln(' * 7. quitter l''application *'); Page [2]

3 writeln('*************************'); write('choisir une action : '); readln(choix); until choix in [1..7]; ******************* procedure ajout_patient(var f:fp); var p:patient; num:=filesize(f); writeln('saisir le nom du patient');readln(nom); with date_nais do write('jj = ');readln(jour); write('mm = ');readln(mois); write('aaaa = ');readln(annee); with date_rdv do write('jj rdv = ');readln(jour); write('mm rdv = ');readln(mois); write('aaaa rdv = ');readln(annee); seek(f,filesize(f)); write(f,p); (***************) procedure modifier_patient(var f:fp); var num:integer; p:patient; writeln('saisir le numéro du patient à modifier'); readln(num); if num in [0..filesize(f)-1] then writeln('saisir le nouveau nom ');readln(nom); with date_nais do write('nouveau jj = ');readln(jour); write('nouveau mm = ');readln(mois); write('nouveau aaaa = ');readln(annee); write(f,p); end else writeln('patient inexistant!!!'); (********************************) procedure attribuer_rdv(var f:fp); var num:integer; p:patient; writeln('saisir le numéro du patient qui veut avoir un rdv'); readln(num); if num in [0..filesize(f)-1] then with p,date_rdv do write('jj = ');readln(jour); write('mm = ');readln(mois); write('aaaa = ');readln(annee); write(f,p); end else writeln('patient inexistant!!!'); (*****************************) procedure affiche_patient(var f:fp); var num:integer; p:patient; Page [3]

4 writeln('saisir le numéro du patient à afficher'); readln(num); if num in [0..filesize(f)-1] then writeln('numéro : ',num); writeln('nom et prénom : ',nom); with date_nais do writeln('date de naissance : ', jour, '/', mois, '/', annee); with date_rdv do writeln('date du rdv : ',jour,'/',mois,'/',annee); end else writeln('patient inexistant!!!'); readkey; (*************************) procedure affiche_liste(var f:fp); var p:patient; writeln('numéro : ',num); writeln('nom et prénom : ',nom); with date_nais do writeln('date de naissance : ', jour, '/', mois, '/', annee); with date_rdv do writeln('date du rdv : ',jour,'/',mois,'/',annee); readkey; (*******************************) Exercice 8 (Manuel Scolaire) procedure creation (var nomi : text ; nome : string) ; procedure affiche_rdv(var f:fp); var p:patient; rdv:date; with rdv do write('jj = ');readln(jour); write('mm = ');readln(mois); write('aaaa = ');readln(annee); if (p.date_rdv.jour = rdv.jour) and (p.date_rdv.mois = rdv.mois) and (p.date_rdv.annee = rdv.annee) then writeln('numéro : ',num); writeln('nom et prénom : ',nom); with date_nais do writeln('date de naissance : ', jour, '/', mois, '/', annee); readkey; {** programme principal **} creation(f); choisir(choix); case choix of 1: ajout_patient(f); 2: modifier_patient(f); 3: attribuer_rdv(f); 4: affiche_patient(f); 5: affiche_liste(f); 6: affiche_rdv(f); until choix = 7; end. assign (nomi, nome) ; Page [4]

5 rewrite (nomi) ; _ function majuscule (x : string) : string ; var i : integer ; for i := 1 to length (x) do x[i] := upcase (x[i]) ; majuscule := x ; _ procedure saisie (var nomi : text) ; var ch : string ; append (nomi) ; writeln ('Donner une chaine de caractere. Fin pour quitter') ; readln (ch) ; Exercice 9 (Manuel Scolaire) procedure creer_fichier (var nomi : typefile ; nome : string) ; assign (nomi, nome) ; rewrite (nomi) ; procedure ouvrir_fichier (var nomi : typefile ; nome : string) ; {$i-} Reset (nomi) ; {$i+} if ioresult <> 0 then writeln ('Fichier inexistant!') ; procedure supprimer_fichier (var nomi : typefile ; nome : string) ; {$i-} Reset (nomi) ; {$i+} if ioresult <> 0 then writeln ('Fichier inexistant!') else erase (nomi) ; _ procedure fermer_fichier (var nomi : typefile) ; if majuscule (ch) <>'FIN' then writeln (nomi, ch) ; until majuscule (ch) = 'FIN' ; _ procedure affiche (var nomi : text) ; var ch : string ; clrscr ; writeln ('Contenu du fichier : ') ; while (not seekeof (nomi)) do readln (nomi, ch) ; writeln (ch) ; var p : integer ; {$i-} p := filepos (nomi) ; {$i+} if ioresult = 0 then procedure ajouter_film (var nomi : typefile) ; var v : film ; choix : char ; seek (nomi, filesize (nomi)) ; with v do readln (tit) ; readln (aut) ; write (nomi, v) ; writeln ('Ajouter film : (O/N) ') ; readln (choix) ; choix := upcase (choix) ; until choix in ['O', 'N'] ; until (choix = 'N') ; Page [5]

6 function majuscule (x : string) : string ; var i : integer ; for i := 1 to length (x) do x[i] := upcase (x[i]) ; majuscule := x ; procedure modifier_film (var nomi : typefile ; f : film) ; var v : film ; while not eof (nomi) do if (majuscule (v.tit) = majuscule (f.tit)) and (majuscule (v.aut) = majuscule (f.aut)) then with v do readln (tit) ; readln (aut) ; seek (nomi, filepos (nomi) -1) ; write (nomi, v) ; const nome = 'c : \bd\film.sql' ; type film = record tit : string ; aut : string ; typefile = file of film ; var nomi : typefile ; procedure chercher_film (var nomi : typefile ; f : film) ; var v : film ; trouve : boolean ; trouve := false ; while (not eof (nomi)) and (trouve = false) do if (majuscule (v.tit) = majuscule (f.tit)) and (majuscule (v.aut) = majuscule (f.aut))then trouve:=true; if trouve = true then writeln ('Film existant dans la BD') else writeln ('Film inexistant') ; procedure supprimer_film (var nomi : typefile ; f : film) ; var i, k : integer ; trouve : boolean ; v : film ; trouve := false ; while (not eof (nomi)) and (trouve = false) do if (majuscule (v.tit) = majuscule (f.tit)) and (majuscule (v.aut) = majuscule (f.aut)) then trouve:=true; if trouve = true then i := filepos (nomi) -1 ; seek (nomi, i) ; for k := i+1 to filesize (nomi) -1 do seek (nomi, k) ; seek (nomi, k-1) ; write (nomi, v) ; truncate (nomi) ; Page [6]

7 Page [7]

sujet1: Correction Des Epreuves D Informatique _--Pratique--_ MEDDEB Mohamed Page 1 Devoirs et examens :

sujet1: Correction Des Epreuves D Informatique _--Pratique--_ MEDDEB Mohamed Page 1 Devoirs et examens : Correction Des Epreuves D Informatique sujet1: Program bac_2017_25_mai_s1; Uses Wincrt; Type tab = Array [1..20] Of Integer; n: Integer; T: tab; _--Pratique--_ 2017 Procedure saisir( n:integer); write('donner

More information

Corrections proposées par Mr Adnen Smii. Propositions de correction Bac Pratique informatique 4 scientifiques -27 mai h

Corrections proposées par Mr Adnen Smii. Propositions de correction Bac Pratique informatique 4 scientifiques -27 mai h 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

More information

Correction bac pratique 2012 g1

Correction bac pratique 2012 g1 Bac pratique 2012 g1 Correction bac pratique 2012 g1 program FactPrem; uses wincrt; type fdat=file of integer; tab=array[1..20] of string; var fd:fdat; ft:text;n,p,d:integer;decomp:tab; {***** fonction

More information

TD 2. Correction TP info

TD 2. Correction TP info TP 2 Exercice 3 : Impôts Sub impot() Dim montant As Integer montant = Cells(1, 1).Value Dim montanttot As Integer Select Case montant Case 0 To 1000 montanttot = 0.1 * montant Case 1001 To 5000 montanttot

More information

# Project Tracker Status Priority Subject Updated Category Target version 559 Auto Multiple 05/09/2018 1/10

# Project Tracker Status Priority Subject Updated Category Target version 559 Auto Multiple 05/09/2018 1/10 Issues # Project Tracker Status Priority Subject Updated Category Target version 559 Auto Multiple Support New Normal automatisation de l'identification des questions 05/08/2018 11:44 557 Auto Multiple

More information

Introduction To Files In Pascal

Introduction To Files In Pascal Introduction To Files In Pascal In this section of notes you will learn how to read from and write to files in your Pascal programs. What You Know About Input And Output Comes from the user or is displayed

More information

VLANs. Commutation LAN et Wireless Chapitre 3

VLANs. Commutation LAN et Wireless Chapitre 3 VLANs Commutation LAN et Wireless Chapitre 3 ITE I Chapter 6 2006 Cisco Systems, Inc. All rights reserved. Cisco Public 1 Objectifs Expliquer le rôle des VLANs dans un réseau convergent. Expliquer le rôle

More information

Introduction To Files In Pascal

Introduction To Files In Pascal Introduction To Files In Pascal In this section of notes you will learn how to read from and write to files in Pascal. What You Know About Input And Output Comes from the user or is displayed to the user

More information

Corrigé. Leçon A Exercices : Tutoriel a. Dim strmois(1 to 6) as String

Corrigé. Leçon A Exercices : Tutoriel a. Dim strmois(1 to 6) as String Corrigé Tutoriel 10 Leçon A Exercices : 1. a. Dim strmois(1 to 6) as String b. StrMois(1) = "Janvier" StrMois(2) = "Février" StrMois(3) = "Mars" StrMois(4) = "Avril" StrMois(5) = "Mai" StrMois(6) = "Juin"

More information

Classes internes, Classes locales, Classes anonymes

Classes internes, Classes locales, Classes anonymes Classes internes, Classes locales, Classes anonymes Victor Marsault Aldric Degorre CPOO 2015 Enum (1) 2 Quand les utiliser: disjonctions de cas type au sens courant (eg. type de messages d erreur, type

More information

SLAM 3 Cas des inscriptions aux BTS

SLAM 3 Cas des inscriptions aux BTS 28/11/2014 SIO2 SLAM SLAM 3 Table des matières I.Création de la base de données...2 a)création des tables dans la base de données gsh...2 b)descriptifs des tables...3 c)procédures d'insertions et mise

More information

Getting Started With Pascal Programming

Getting Started With Pascal Programming Getting Started With Pascal Programming How are computer programs created What is the basic structure of a Pascal Program Variables and constants Input and output Common programming errors Computer Programs

More information

Graphes: Manipulations de base et parcours

Graphes: Manipulations de base et parcours Graphes: Manipulations de base et parcours Michel Habib habib@liafa.univ-paris-diderot.fr http://www.liafa.univ-paris-diderot.fr/~habib Cachan, décembre 2013 Notations Here we deal with finite loopless

More information

Infobel XmlAccess User Manual. Infobel XmlAccess. User Manual. Version 2.0. Page 1 of 45

Infobel XmlAccess User Manual. Infobel XmlAccess. User Manual. Version 2.0. Page 1 of 45 Infobel XmlAccess User Manual Version 2.0 Page 1 of 45 Table of Content 1. INTRODUCTION... 4 1.1. General... 4 1.2. Glossary... 4 2. INFOBEL SEARCH SERVICE... 5 2.1. Access the Infobel Search Service...

More information

Compilation TP 0.0 : The target architecture: Digmips

Compilation TP 0.0 : The target architecture: Digmips Compilation TP 0.0 : The target architecture: Digmips C. Alias & G. Iooss The goal of these TPs is to construct a C compiler for Digmips, a small MIPS processor implemented using the Diglog logic simulation

More information

NFA035 Examen 1 e session

NFA035 Examen 1 e session NFA035 Examen 1 e session 2012-2013 juin 2013 Durée : 3h Documents autorisés Barème indicatif Exercice 1 Entrées/Sorties, 6 pos On veut écrire des méthodes pour afficher les colonnes de caractères d un

More information

Correction Bac pratique 28/05/2012 8h30

Correction Bac pratique 28/05/2012 8h30 Correction Bac pratique 28/05/2012 8h30 program tp28052012_8h30; uses wincrt; type tab=array[1..20] of integer; n,p:integer; t:tab; procedure saisie( n:integer); writeln('=====================donner la

More information

Getting Started With Pascal Programming

Getting Started With Pascal Programming Getting Started With Pascal Programming How are computer programs created What is the basic structure of a Pascal Program Variables and constants Input and output Pascal operators Common programming errors

More information

GCE AS and A Level. Computing. AS exams 2009 onwards A2 exams 2010 onwards. Unit 1: Approved specimen question paper. Version 1.1

GCE AS and A Level. Computing. AS exams 2009 onwards A2 exams 2010 onwards. Unit 1: Approved specimen question paper. Version 1.1 GCE AS and A Level Computing AS exams 2009 onwards A2 exams 2010 onwards Unit 1: Approved specimen question paper Version 1.1 Version 1.1 General Certificate of Education Advanced Subsidiary Specimen Paper

More information

Java et Mascopt. Jean-François Lalande, Michel Syska, Yann Verhoeven. Projet Mascotte, I3S-INRIA Sophia-Antipolis, France

Java et Mascopt. Jean-François Lalande, Michel Syska, Yann Verhoeven. Projet Mascotte, I3S-INRIA Sophia-Antipolis, France Java et Mascopt Jean-François Lalande, Michel Syska, Yann Verhoeven Projet Mascotte, IS-INRIA Sophia-Antipolis, France Formation Mascotte 09 janvier 00 Java Java et Mascopt - Formation Mascotte 09 janvier

More information

Correction proposée par Mr Najeh SOUGUIR 1/8

Correction proposée par Mr Najeh SOUGUIR 1/8 Corrigés Bac pratique Informatique Sections Math, Sciences et Technique 28 mai 2012(8h30, 10h,14h, 15h30) lundi 28 mai 2012 à 8h30 program Lundi_28_05_2012_8h30; type tab= array [1..20] of integer; var

More information

TD : Compilateur ml2java semaine 3

TD : Compilateur ml2java semaine 3 Module 4I504-2018fev TD 3 page 1/7 TD : Compilateur ml2java semaine 3 Objectif(s) 22 février 2018 Manipulation d un traducteur de code ML vers Java. 1 ML2Java Exercice 1 Structure du runtime 1. Déterminer

More information

Private Sub Cours_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

Private Sub Cours_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Public Class Cours Private nc As Integer Private Sub Cours_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'TODO : cette ligne de code charge les données dans la table

More information

About Transferring License Rights for. PL7 V4.5 and Unity Pro V2.3 SP1 Software

About Transferring License Rights for. PL7 V4.5 and Unity Pro V2.3 SP1 Software Page 1 of 38 Click here to access the English Cliquez ici pour accéder au Français Klicken Sie hier, um zum Deutschen zu gelangen Premete qui per accedere all' Italiano Pulse acquì para acceder al Español

More information

The Personal Information Canadians Give to Retailers

The Personal Information Canadians Give to Retailers The Personal Information Canadians Give to Retailers Final Report Submitted to: Office of the Privacy Commissioner January 4, 2008 Table of Contents RESEARCH PURPOSE... 1 METHODOLOGY... 2 KEY FINDINGS...

More information

Tutorial 4: Flow Artificial Intelligence

Tutorial 4: Flow Artificial Intelligence Tutorial 4: Flow Artificial Intelligence G.Guérard Les étudiants doivent faire des groupes de 3-4 afin de faire un brainstorming pour chaque exercice. Il n est pas demandé aux étudiants d avoir une connaissance

More information

DK UL. Ref. Certif. No. Date: Signature:

DK UL. Ref. Certif. No. Date: Signature: DK-54446-UL IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME SYSTEME CEI D'ACCEPTATION MUTUELLE DE CERTIFICATS D'ESSAIS DES EQUIPEMENTS ELECTRIQUES (IECEE)

More information

NFA035 Exemple de sujet d examen

NFA035 Exemple de sujet d examen NFA035 Exemple de sujet d examen Exercice 1 Entrées/sorties 7 pos juin 2013 Durée : 3h Documents autorisés Barème indicatif Indication : pour cet exercice, nous ne pensons pas qu il soit utile d utiliser

More information

NFA035 Examen 1 e session

NFA035 Examen 1 e session NFA035 Examen 1 e session 2012-2013 juin 2013 Durée : 3h Documents autorisés Barème indicatif Exercice 1 Entrées/Sorties, 6 points On veut écrire des méthodes pour afficher les colonnes de caractères d

More information

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Additional Information on page 2.

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Additional Information on page 2. DK-68856-M1-UL IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME CB TEST CERTIFICATE Product Switching Power Supply for Building In Name and address of the

More information

User Guide. for the Transactional Site. belonging to the. Laboratoire de sciences judiciaires et de médecine légale. for

User Guide. for the Transactional Site. belonging to the. Laboratoire de sciences judiciaires et de médecine légale. for User Guide for the Transactional Site belonging to the Laboratoire de sciences judiciaires et de médecine légale for Managing Expert Opinion Requests (GDE) Version 1.7 for External Users Created by Daniel

More information

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Additional Information on page 2

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Additional Information on page 2 DK-69361-UL IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME CB TEST CERTIFICATE Product Switching Power Supply for Building In Name and address of the

More information

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Switching Power Supply for Building In

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Switching Power Supply for Building In DK-68856-M1-UL IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME CB TEST CERTIFICATE Product Switching Power Supply for Building In Name and address of the

More information

Switching Power Supply DELTA ELECTRONICS INC 3 TUNGYUAN RD CHUNGLI INDUSTRIAL ZONE TAOYUAN COUNTY TAIWAN

Switching Power Supply DELTA ELECTRONICS INC 3 TUNGYUAN RD CHUNGLI INDUSTRIAL ZONE TAOYUAN COUNTY TAIWAN DK-48554-A2-UL IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME SYSTEME CEI D ACCEPTATION MUTUELLE DE CERTIFICATS D ESSAIS DES EQUIPEMENTS ELECTRIQUES (IECEE)

More information

Installation des interfaces et utilisation de WorldCAT-CIF pour le catalogue CD Meusburger

Installation des interfaces et utilisation de WorldCAT-CIF pour le catalogue CD Meusburger Installation des interfaces et utilisation de pour le catalogue CD Meusburger 1. Condition préalable: lors de l installation du catalogue CD Meusburger, il faut avoir mis en place DAKO. 2. Veuillez vérifier

More information

CERTIFICAT D'ESSAI OC. Switching Power Supply XP POWER L L C RED HILL AVE, SUITE 100 TUSTIN CA 92780, USA

CERTIFICAT D'ESSAI OC. Switching Power Supply XP POWER L L C RED HILL AVE, SUITE 100 TUSTIN CA 92780, USA US-26019-UL IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME SYSTEME CEI D'ACCEPTATION MUTUELLE DE CERTIFICATS D'ESSAIS DES EQUIPEMENTS ELECTRIQUES (IECEE)

More information

REPORT ytestjro. DATA: * Déclaration des tables internes : lt_sflight TYPE STANDARD TABLE OF sflight, lt_fldcat TYPE lvc_t_fcat. START-OF-SELECTION.

REPORT ytestjro. DATA: * Déclaration des tables internes : lt_sflight TYPE STANDARD TABLE OF sflight, lt_fldcat TYPE lvc_t_fcat. START-OF-SELECTION. REPORT ytestjro. DATA: * Déclaration des tables internes : lt_sflight TYPE STANDARD TABLE OF sflight, lt_fldcat TYPE lvc_t_fcat. START-OF-SELECTION. * Récupération des vols : SELECT * INTO TABLE lt_sflight

More information

Read me carefully before making your connections!

Read me carefully before making your connections! CROSS GAME USER GUIDE Read me carefully before making your connections! Warning: The CROSS GAME converter is compatible with most brands of keyboards and Gamer mice. However, we cannot guarantee 100% compatibility.

More information

TP 3 des architectures logicielles Séance 3 : Architecture n-tiers distribuée à base d EJB. 1 Préparation de l environnement Eclipse

TP 3 des architectures logicielles Séance 3 : Architecture n-tiers distribuée à base d EJB. 1 Préparation de l environnement Eclipse TP 3 des architectures logicielles Séance 3 : Architecture n-tiers distribuée à base d EJB 1 Préparation de l environnement Eclipse 1. Environment Used JDK 7 (Java SE 7) EJB 3.0 Eclipse JBoss Tools Core

More information

Business Accounts and Cash Management Solutions DIRECT DEPOSITS. User Guide

Business Accounts and Cash Management Solutions DIRECT DEPOSITS. User Guide DIRECT DEPOSITS User Guide Table of Contents Section 1 How it Works... 3 Introduction... 4 Advantages... 5 Choice of Operating Methods... 5 Signing Clients Up for Direct Deposits... 6 Sending and Downloading

More information

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Additional Information on page 2

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Additional Information on page 2 DK-69327-UL IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME CB TEST CERTIFICATE Product Switching Power Supply for Building In Name and address of the

More information

Making Decisions In Pascal

Making Decisions In Pascal Making Decisions In Pascal In this section of notes you will learn how to have your Pascal programs choose between alternative courses of action High Level View Of Decision Making For The Computer Is income

More information

DÉVELOPPER UNE APPLICATION IOS

DÉVELOPPER UNE APPLICATION IOS DÉVELOPPER UNE APPLICATION IOS PROTOCOLES CE COURS EST EXTRAIT DU LIVRE APP DEVELOPMENT WITH SWIFT 1 PROTOCOLES Définit un plan de méthodes, de propriétés et d'autres exigences qui conviennent à une tâche

More information

Annex A (Informative) Collected syntax The nonterminal symbols pointer-type, program, signed-number, simple-type, special-symbol, and structured-type

Annex A (Informative) Collected syntax The nonterminal symbols pointer-type, program, signed-number, simple-type, special-symbol, and structured-type Pascal ISO 7185:1990 This online copy of the unextended Pascal standard is provided only as an aid to standardization. In the case of dierences between this online version and the printed version, the

More information

Ecole Nationale d Ingénieurs de Brest. Programmation par objets Le langage C++ Type Concret de Données en C++

Ecole Nationale d Ingénieurs de Brest. Programmation par objets Le langage C++ Type Concret de Données en C++ Notes de cours Ecole Nationale d Ingénieurs de Brest Programmation par objets Le langage C++ Type Concret de Données en C++ J. Tisseau 1995/1997 enib c jt......... 1/30 Du TAD au TCD Type Abstrait de Données

More information

Making Decisions In Pascal

Making Decisions In Pascal Making Decisions In Pascal In this section of notes you will learn how to have your Pascal programs choose between alternative courses of action High Level View Of Decision Making For The Computer??? True

More information

Descriptif de communication Page 2 29 CALEC ST II KNX TP1

Descriptif de communication Page 2 29 CALEC ST II KNX TP1 Descriptif de communication Page 2 29 CALEC ST II KNX TP1 Table des matières 1 Généralités... 2 1.1 Contenu... 2 1.2 Définition... 2 1.3 Marques déposées et noms commerciaux... 2 1.4 Certification selon

More information

C:\MasterPageWeb\HAPR\docu\HAPR_VB6_version15sept06.rtf 19/10/08. HARP_VB projet en VB6

C:\MasterPageWeb\HAPR\docu\HAPR_VB6_version15sept06.rtf 19/10/08. HARP_VB projet en VB6 HARP_VB projet en VB6 Option Explicit Dim Value As Integer Dim i As Integer Dim il As Long Dim LL, L1S, L250µS, L500µS, L1mS, L2mS, L5mS, L10mS As Single Dim offsetdepart As Long Dim police(256, 8) As

More information

Oracle ZFS Storage Appliance Cabling Guide. For ZS3-x, 7x20 Controllers, and DE2-24, Sun Disk Shelves

Oracle ZFS Storage Appliance Cabling Guide. For ZS3-x, 7x20 Controllers, and DE2-24, Sun Disk Shelves Oracle ZFS Storage Appliance Cabling Guide For ZS3-x, 7x20 Controllers, and DE2-24, Sun Disk Shelves Part No: E53670-01 June 2014 Copyright 2009, 2014, Oracle and/or its affiliates. All rights reserved.

More information

Projet 0 - Correc,on. Structures de données et algorithmes

Projet 0 - Correc,on. Structures de données et algorithmes Projet 0 - Correc,on Structures de données et algorithmes Code de base #include #define uint unsigned int #define N 101 int f(int m, int M, uint* s) *s ^= (uint)(*s

More information

A/L 2011_revision. PASCAL PROGRAMMING

A/L 2011_revision. PASCAL PROGRAMMING Pascal is a high level programming language developed by Niklaus Wirth in 1970 based on the ALGOL programming language. It was named in honor of the French mathematician and philosopher Blaise Pascal.

More information

{ -- FLORIDA HIGH SCHOOLS COMPUTING COMPETITION '83 } { -- PASCAL PROGRAM SOLUTIONS }

{ -- FLORIDA HIGH SCHOOLS COMPUTING COMPETITION '83 } { -- PASCAL PROGRAM SOLUTIONS } FHSCC '83 PASCAL PROGRAM SOLUTIONS 145 { -- FLORIDA HIGH SCHOOLS COMPUTING COMPETITION '83 } { -- PASCAL PROGRAM SOLUTIONS } {1.1} program One1T83; { -- This program will round a number to nearest whole

More information

DECLARATIONS OF CONFORMITY, 3200L, 4200L, 4600L, 5500L, ELO- KIT-ESY, ELO-KIT-ECM3

DECLARATIONS OF CONFORMITY, 3200L, 4200L, 4600L, 5500L, ELO- KIT-ESY, ELO-KIT-ECM3 DECLARATIONS OF CONFORMITY, 3200L, 4200L, 4600L, 5500L, ELO-KIT-ESY, ELO-KIT-ECM3 PROPRIETARY INFORMATION MD600031 DECLARATIONS OF CONFORMITY, 3200L, 4200L, 4600L, 5500L, ELO- KIT-ESY, ELO-KIT-ECM3 REVISION

More information

$U6RIW,QWHUQDWLRQDO. Modbus Driver for Windows 95/98/NT/2000/XP 8VHUV0DQXDO 0RGEXV,QWHUIDFH. 9HUVLRQ Page 1

$U6RIW,QWHUQDWLRQDO. Modbus Driver for Windows 95/98/NT/2000/XP 8VHUV0DQXDO 0RGEXV,QWHUIDFH. 9HUVLRQ Page 1 0RGEXV,QWHUIDFH 8VHUV0DQXDO 9HUVLRQ Page 1 6\VWHP,QWHUIDFH The implemented procedures and functions in the DLL modbus (Modbus.dll ) are subsequently described in detail: 2SHQ&RP 'LVDEOH&RP 5HDG:RUGV :ULWH:RUGV

More information

Concours Informatique Luxembourgeois 2012 Epreuve Finale (05/07/2012) Solutions

Concours Informatique Luxembourgeois 2012 Epreuve Finale (05/07/2012) Solutions Concours Informatique Luxembourgeois 2012 Epreuve Finale (05/07/2012) Solutions Tâche I Marathon 50 points #include #include #include #include #include

More information

Today s Topics. Team Project Introduce this year s team project. S/SL S/SL, the Syntax/Semantic Language. CISC 458 Winter J.R.

Today s Topics. Team Project Introduce this year s team project. S/SL S/SL, the Syntax/Semantic Language. CISC 458 Winter J.R. Today s Topics Team Project Introduce this year s team project S/SL S/SL, the Syntax/Semantic Language Team Project CISC / CMPE 458 - Project 2019 Implement a compiler for a new language called Mini-Turing

More information

Introduction. Master GRH MS VISIO 2016

Introduction. Master GRH MS VISIO 2016 MS VISIO 2016 Introduction Visio is a program that allows you to create : - Flowchart diagrams / Procedure diagrams - Organization charts - Space/Floor Management - Maps - Site Maps - Brainstorming diagrams

More information

Beginning Programming (Pascal) Lecture 75. Figure 1. type-declarations. simple-type. pointer-type. array-type. file-type. set-type.

Beginning Programming (Pascal) Lecture 75. Figure 1. type-declarations. simple-type. pointer-type. array-type. file-type. set-type. -declarations -identifier = ; ; Figure 1. -declarations simple- pointer- array- file- set- record- Figure 2. simple- standard- subrange- enumerated- Figure 3. simple- standard- boolean char integer real

More information

Programmer vos indicateurs

Programmer vos indicateurs Programmer vos indicateurs Pour programmer vos indicateurs techniques ou vos stratégies personnelles, faites un clic-droit sur la liste déroulante des indicateurs techniques puis choisir dans le menu "Programmer

More information

{ -- FLORIDA HIGH SCHOOLS COMPUTING COMPETITION '84 } { -- PASCAL PROGRAM SOLUTIONS }

{ -- FLORIDA HIGH SCHOOLS COMPUTING COMPETITION '84 } { -- PASCAL PROGRAM SOLUTIONS } { -- FLORIDA HIGH SCHOOLS COMPUTING COMPETITION '84 } { -- PASCAL PROGRAM SOLUTIONS } {1.1} program One1T84; { -- This program produces a table of Fahrenheit for Celcius. } C: Integer; Writeln ('CELCIUS

More information

PRO7_TEL ver1_0 FINAL.BS2

PRO7_TEL ver1_0 FINAL.BS2 '{$STAMP BS2} PRO7_TEL ver1_0 FINAL.BS2 ' Programme: TEL.BS2 Simulateur de Ligne Telephonique ' Par: Sylvain Bergeron Date: 2000-FEV ' Versions: ' 0.1 Routines de SelfCheck: 2000-Fev-04 ' 0.2 Routines

More information

Tutorial 3: Shortest path Artificial Intelligence

Tutorial 3: Shortest path Artificial Intelligence Tutorial 3: Shortest path Artificial Intelligence G.Guérard Les étudiants doivent faire des groupes de 3-4 afin de faire un brainstorming pour chaque exercice. Il n est pas demandé aux étudiants d avoir

More information

Creating an Order. Neighbourhood Mail. Effective January 15, postescanada.ca/cpnmguides

Creating an Order. Neighbourhood Mail. Effective January 15, postescanada.ca/cpnmguides Creating an Order Neighbourhood Mail Effective January 15, 2018 Trade-mark of Canada Post Corporation. OM Official mark of Canada Post Corporation. postescanada.ca/cpnmguides T575217 Neighbourhood Mail

More information

I605 v0 22/07/1994. I605 v0 Message definition 22/07/1994. Message name : I605 Message version 0 Date released 22/07/1994

I605 v0 22/07/1994. I605 v0 Message definition 22/07/1994. Message name : I605 Message version 0 Date released 22/07/1994 I605 v0 Message definition 22/07/1994 I605 v0 22/07/1994 Message name : I605 Message version 0 Date released 22/07/1994 Responsible agency BCSS-KSZ Message description Intégration dans le répertoire Inschrijving

More information

String Instructions In Cobol Delimited By Spaces

String Instructions In Cobol Delimited By Spaces String Instructions In Cobol Delimited By Spaces The fourth division in a COBOL (sub)program is the PROCEDURE DIVISION, which of the instruction STOP RUN, or, in the case of a subprogram, EXIT PROGRAM,

More information

Documentation. Bluetooth Access Point. Manuel de l'utilisateur. User's Manual

Documentation. Bluetooth Access Point. Manuel de l'utilisateur. User's Manual Documentation Bluetooth Access Point Manuel de l'utilisateur User's Manual SOMMAIRE INSTALLATION... 1 Comment connecter votre Bluetooth Access Point... 1 Comment installer les pilotes de votre boîtier...

More information

Web Browser Settings for MOGADOC (Online Version)

Web Browser Settings for MOGADOC (Online Version) [1] Web Browser Settings for MOGADOC (Online Version) 2016-08-15 Contents Edge (25.10586.0.0):... 2 Enable Pop-ups, JavaScript... 2 Internet Explorer TM ( IE11):... 3 Enable Pop-ups, JavaScript, Active

More information

ILLUSTRATION DES EXCEPTIONS

ILLUSTRATION DES EXCEPTIONS ILLUSTRATION DES EXCEPTIONS Exemple 1: Capture d'une exception prédéfinie package exception1; public class PrintArgs public static void main ( String[ ] args ) System.out.println ( " Affichage des paramètres

More information

ALGORITHMS. Algorithms help for all these issues.

ALGORITHMS. Algorithms help for all these issues. ALGORITHMS Objective To be able to identify constants and variables in a simple problem to define the type of a constant to explain an algorithm to describe a simple problem using an algorithm Why do we

More information

INF 2005 Programmation orientée objet avec C++

INF 2005 Programmation orientée objet avec C++ INF 2005 Programmation orientée objet avec C++ Module 5 - Solutions 1. #include #include double *s_ltab; long ltab_n; void Sommation(double b) double l1b = 1.0 / log(b); double s = 1.0;

More information

5. Enterprise JavaBeans 5.3 Entity Beans. Entity Beans

5. Enterprise JavaBeans 5.3 Entity Beans. Entity Beans Entity Beans Vue objet d une base de données (exemples: client, compte, ) en général, une ligne d une table relationnelle (SGBD-R) ou un objet persistant (SGBD- OO) sont persistant (long-lived) la gestion

More information

P PDF [Page: 1 of 28] Image Cover Sheet CLASSIFICATION SYSTEM NUMBER TITLE. system Number: Patron Number: Requester: Notes:

P PDF [Page: 1 of 28] Image Cover Sheet CLASSIFICATION SYSTEM NUMBER TITLE. system Number: Patron Number: Requester: Notes: P153794.PDF [Page: 1 of 28] Image Cover Sheet CLASSIFICATION SYSTEM NUMBER 153794 UNCLASSIFIED 1111111111111111111111111111111111111111 TITLE USER'S MANUAL FOR MACGRID system Number: Patron Number: Requester:

More information

arrays Simple Types (Atomic) In this section of notes you will be introduced to a homogeneous composite type, onedimensional 1) Integer 2) Real

arrays Simple Types (Atomic) In this section of notes you will be introduced to a homogeneous composite type, onedimensional 1) Integer 2) Real Arrays In this section of notes you will be introduced to a homogeneous composite type, onedimensional arrays Simple Types (Atomic) 1) Integer 2) Real 3) Char 4) Boolean 1) Homogeneous arrays 2) Heterogeneous

More information

Oracle Dual Port QDR InfiniBand Adapter M3. Product Notes

Oracle Dual Port QDR InfiniBand Adapter M3. Product Notes Oracle Dual Port QDR InfiniBand Adapter M3 Product Notes Part No.: E40986-01 September 2013 Copyright 2013 Oracle and/or its affiliates. All rights reserved. This software and related documentation are

More information

Latest information prior to deployment of "Dialogys V7.5.6" Contents. What is Dialogys? How often is data updated?... 5

Latest information prior to deployment of Dialogys V7.5.6 Contents. What is Dialogys? How often is data updated?... 5 Latest information prior to deployment of "Dialogys V7.5.6" Contents What is Dialogys?... 5 How often is data updated?... 5 What will the November 2014 delivery with the new Dialogys application contain

More information

Déclaration du module

Déclaration du module Déclaration du module Imports System.IO Module ModuleStagiaires Public Structure Stagiaire Private m_code As Long Private m_nom As String Private m_prenom As String Public Property code() As Long Get Return

More information

Solutions to Chapter 7

Solutions to Chapter 7 Solutions to Chapter 7 Review Questions 1. a. True 3. b. False 5. a. True 7. c. stdfile 9. a. Opens the file for reading and sets the file marker at the beginning. 11. a. Conversion code 13. a. scanf implicitly

More information

Réinitialisation de serveur d'ucs série C dépannant TechNote

Réinitialisation de serveur d'ucs série C dépannant TechNote Réinitialisation de serveur d'ucs série C dépannant TechNote Contenu Introduction Conditions préalables Conditions requises Composants utilisés Sortie prévue pour différents états de réinitialisation Réinitialisation

More information

Pascal program for the bilinear imputation

Pascal program for the bilinear imputation Appendix II Pascal program for the bilinear imputation The program bootsws generates, from a dataset containing missing values, bootstrap replicas of the dataset and imputes them using the bilinear scheme

More information

9608 COMPUTER SCIENCE

9608 COMPUTER SCIENCE CAMBRIDGE INTERNATIONAL EXAMINATIONS Cambridge International Advanced Subsidiary and Advanced Level MARK SCHEME for the May/June 2015 series 9608 COMPUTER SCIENCE 9608/22 Paper 2 (Written Paper), maximum

More information

Voir ces deux articles : [3]

Voir ces deux articles :  [3] Publié sur WindowsLinux.net (http://www.windowslinux.net) Accueil > Microsoft Security Essentials Microsoft Security Essentials [1] Téléchargements Le téléchargement de MSE (Microsoft Security Essentials)

More information

How to obtain a certificate of equivalence?

How to obtain a certificate of equivalence? How to obtain a certificate of equivalence? Why is it useful? You need the certificate if you want to apply to university. It will provide you an equivalent of your diploma in the French system. What documents

More information

Lecture 02 C FUNDAMENTALS

Lecture 02 C FUNDAMENTALS Lecture 02 C FUNDAMENTALS 1 Keywords C Fundamentals auto double int struct break else long switch case enum register typedef char extern return union const float short unsigned continue for signed void

More information

Package CUFF. May 28, 2018

Package CUFF. May 28, 2018 Note -*- Encoding: utf-8 -*- Type Package Title Charles's Utility Function using Formula Version 1.5 Date 2018-05-27 Author Package CUFF May 28, 2018 Maintainer Depends R (>= 3.2.2)

More information

Getting Started With Pascal Programming

Getting Started With Pascal Programming Getting Started With Pascal Programming How are computer programs created What is the basic structure of a Pascal Program Variables and constants Input and output Pascal operators Common programming errors

More information

VHDL par Ahcène Bounceur VHDL

VHDL par Ahcène Bounceur VHDL VHDL Ahcène Bounceur 2009 Plan de travail 1. Introduction au langage 2. Prise en main 3. Machine à état 4. Implémentation sur FPGA 1 VHDL Introduction au langage Ahcène Bounceur VHDL VHIC (Very High-speed

More information

ON-LINE DISTRIBUTION OF DIGITAL TOPOGRAPHIC DATA

ON-LINE DISTRIBUTION OF DIGITAL TOPOGRAPHIC DATA ISPRS SIPT IGU UCI CIG ACSG Table of contents Table des matières Authors index Index des auteurs Search Recherches Exit Sortir ON-LINE DISTRIBUTION OF DIGITAL TOPOGRAPHIC DATA Michel Gilbert Natural Resources

More information

Control Flow. COMS W1007 Introduction to Computer Science. Christopher Conway 3 June 2003

Control Flow. COMS W1007 Introduction to Computer Science. Christopher Conway 3 June 2003 Control Flow COMS W1007 Introduction to Computer Science Christopher Conway 3 June 2003 Overflow from Last Time: Why Types? Assembly code is typeless. You can take any 32 bits in memory, say this is an

More information

SMC applications converter

SMC applications converter SMC applications converter Section SMC applications converter Page ENGLISH 1 SMC applications converter ENGLISH Section Page While every precaution has been taken in the preparation of this document, Schneider

More information

SD Model. Instruction Manual. Light/Temperature Datalogger. reedinstruments

SD Model. Instruction Manual. Light/Temperature Datalogger. reedinstruments Model SD-1128 Light/Temperature Datalogger Instruction Manual reedinstruments com 1-877-849-2127 info@reedinstruments.com.reedinstruments.com Table of Contents Features... 3 Specifications...3-5 Instrument

More information

A computerized system to store and retrieve data on biological and biotechnological veterinary products of the American continent

A computerized system to store and retrieve data on biological and biotechnological veterinary products of the American continent Rev. sa. lech. Off. int. Epiz., 1992, 11 (3), 925 929 A computerized system to store and retrieve data on biological and biotechnological veterinary products of the American continent L.V. MELENDEZ *,

More information

(************************ Instructions de base ************************)

(************************ Instructions de base ************************) (**********************************************************************) (* Corrige du TD "Graphisme" *) (**********************************************************************) (************************

More information

(A) 99 ** (B) 100 (C) 101 (D) 100 initial integers plus any additional integers required during program execution

(A) 99 ** (B) 100 (C) 101 (D) 100 initial integers plus any additional integers required during program execution Ch 5 Arrays Multiple Choice Test 01. An array is a ** (A) data structure with one, or more, elements of the same type. (B) data structure with LIFO access. (C) data structure, which allows transfer between

More information

Some advises for insulating a new. l isolation d un nouveau laboratoire. Arusha, January 2012

Some advises for insulating a new. l isolation d un nouveau laboratoire. Arusha, January 2012 Some advises for insulating a new cotton testing laboratory Quelques conseils techniques pour l isolation d un nouveau laboratoire d analyse du coton GOURLOT J.-P. PAYET L. Arusha, January 2012 Plan of

More information

with Ada.Numerics.Float_Random; with Ada.Containers.Vectors; procedure CalculDeMatrices is

with Ada.Numerics.Float_Random; with Ada.Containers.Vectors; procedure CalculDeMatrices is Page 1 of 8 NOM DU CSU (principal) : calculdematrices.adb AUTEUR DU CSU : Pascal Pignard VERSION DU CSU : 1.1c DATE DE LA DERNIERE MISE A JOUR : 25 avril 2013 ROLE DU CSU : Opérations sur les matrices.

More information

Sun Ethernet Fabric Operating System. LLA Administration Guide

Sun Ethernet Fabric Operating System. LLA Administration Guide Sun Ethernet Fabric Operating System LLA Administration Guide Part No.: E41876-01 July 2013 Copyright 2013, Oracle and/or its affiliates. All rights reserved. This software and related documentation are

More information

Module DropShipping User manual Version 1.5

Module DropShipping User manual Version 1.5 Module DropShipping User manual Version 1.5 1 / 11 Summary Summary Introduction... 3 Installation... 3 Préparation de Magento... 3 Copie des fichiers... 3 Configuration du module... 4 Drop ship email...

More information

LE APPLICATION DEVELOPER HTV SOLUTIONS

LE APPLICATION DEVELOPER HTV SOLUTIONS page 1 / 6 page 2 / 6 le application developer pdf New to Oracle Community? Be sure to check out our FAQ and read through the Community Guidelines.Then, join our Getting Started group, Introduce yourself

More information