TP ISN Terminale S Instruction if (Programmation Java)

Slides:



Advertisements
Similar presentations
Lalgèbre Diviser les polynômes Multiplier les polynômes Soustraire les polynômes Additionner les polynômes La vocabulaire des polynômes.
Advertisements

Français I Expressing Likes, Dislikes, and Preferences.
Nombres complexes: Module et argument. 11 questions. 20 secondes par question.
Écriture créative: raconter une histoire Comment enrichir sa production écrite.
ACTIVITES MENTALES Collège Jean Monnet Question 1 Vrai ou Faux ? 42 : 6 = 3,5 2.
Les articles partitifs
Notes le 8 mars FAIRE (to make, to do) je faisnous faisons tu faisvous faites il/elle/on faitils/elles font Faire is a very common verb in French. Faire.
Discussion1 Quiz. Q1 Which of the following are invalid Java identifiers (variable names)? a) if b) n4m3 c) Java d) e) DEFAULT_VALUE f) bad-choice.
Cours 9 Les protocoles de niveau trame. La trame LAP-B Le protocole LAP-B (Link Access Protocol - channel B) est une trame qui a été normalisée pour transporter.
TICE 2 ième Semestre Fonctions « logiques ». Février 2006TICE 2ième Semestre - Les fonctions logiques2 Petits rappels… Une formule est toujours de la.
EuropeanEuropean SectionsSections Sommaire Slide 1 : Interview de M Bulow – professeur d’anglais ; Slide 2 : Présentation des deux sections : HG-IGC-management.
Estimer La somme et la différence de grands nombres.
CONSTRUCTION DE LA MEDIATRICE D ’UN SEGMENT. CONSTRUCTION DE LA MEDIATRICE D ’UN SEGMENT Prendre un écartement de compas plus grand que la moitié de la.
Calcul mental 20 secondes par calcul. M. EL HANI.
Introduction to Control Statements Presented by: Parminder Singh BCA 5 th Sem. [ Batch] PCTE, Ludhiana 5/12/ Control Statements.
1.AA 1. 2 times as big as France 2. 4 times as big as France 3. 8 times as big as France 4. more than 10 times as big as France Q37- Canada is : Solution.
Selection The Switch Statement 2/16/11. grade = 'P'; switch (grade){ case 'A': cout
Selection Statements choice of one among several blocks of code Java supports 3 kinds of selection statements: if statement – selects one block or leaves.
Using Java MINISTRY OF EDUCATION & HIGHER EDUCATION COLLEGE OF SCIENCE AND TECHNOLOGY KHANYOUNIS- PALESTINE Lecture 7 Decision Making : selection statements.
Chapter 4: Control Structures I
Chapter 8 Conditionals. Learning Java through Alice © Daly and Wrigley Objectives List relational operators. List logical operators. Use the hierarchy.
5-1 Repetition Statements Repetition statements allow us to execute a statement multiple times Often they are referred to as loops Like conditional statements,
Chapter 3:Decision Structures.  3.1 The if Statement  3.2 The if-else Statement  3.3 The if-else-if Statement  3.4 Nested if Statements  3.5 Logical.
Decision Making Selection structures (if....else and switch/case)
Control Structures 1. Control Structures Java Programming: From Problem Analysis to Program Design, D.S. Malik 2.
CSC1201: PROGRAMMING LANGUAGE 2 Aseel Al Hadlaq 2nd Term
Programming 1 DCT 1033 Control Structures I (Selection) if selection statement If..else double selection statement Switch multiple selection statement.
Boolean Expressions and if-else Statements Java Methods A & AB Object-Oriented Programming and Data Structures Maria Litvin ● Gary Litvin Copyright © 2006.
1 CS1001 Lecture Overview Java Programming Java Programming Arrays Arrays.
ACTIVITES MENTALES Collège Jean Monnet Préparez-vous !
CSI 3125, Preliminaries, page 1 Control Statements.
Chapter 6 Conditionals. Learning Java through Alice © Daly and Wrigley Objectives List relational operators. List logical operators. Use the hierarchy.
Edit the text with your own short phrases. The animation is already done for you; just copy and paste the slide into your existing presentation. This animation.
Activités mathématiques autour du jeu de bridge Séance 1 1.
Mathématiques CST MODULE 6 L’optimisation de GRAPHES.
Utilisation du spectrophotomètre. Allumer l’appareil Puis allumer l’ordinateur (commun au spectro et à la Q-PCR) Utilisation du spectrophotomètre Ouvrir.
Février 2014 GPU / Xeon Phi Calcul de fonction de corrélation à 2 points sur un grand nombre de galaxies Image : collaboration SDSS Problème : pour effectuer.
Tutorial First you must connect to the ENT with your student ID and password.
Programación I Estructuras de control Java. IF- Else.
Switch-Case Statement. What is a switch-case?  The switch-case statement is really nothing more than a glorified.
 Very often when you write code, you want to perform different actions for different decisions. You can use conditional statements in your code to do.
CONSTRUCTION DE LA MEDIATRICE D ’UN SEGMENT. CONSTRUCTION DE LA MEDIATRICE D ’UN SEGMENT A B.
Densité et masse volumique. Imaginons que nous prenions deux cylindres, de même volume, constitués avec des métaux différents. En les pesant, nous trouvons.
Vidéo prise de vue aérienne pour l’immobilier avec drone
1 Ivana Antić TS Ivana Nestorović TS Internet mai, 2014.
Les nombres au-dessus de 1.000
Les propriétés de l’air
La prioritÉ des op Érations
Chapter 6 Conditionals.
Compound Condition Break , Continue Switch Statements in Java
Que fais-tu? lundi, 24 mars L’objectif
Calcul mental. 5ème Questions 1 à 10 : 20 secondes par calcul.
Les Tables de Multiplications
Zone telechargement film zone telechargement film.
Zone telechargement film zone telechargement film.
Telechargement film telechargement film.  Torrent9.blog est un site populaire où vous pouvez trouver des films français de haute qualité sur cpasbien.
CONSTRUCTION DU CERCLE CIRCONSCRIT D ’UN TRIANGLE
Chapter 4 Conditionals.
الكلية الجامعية للعلوم التطبيقية
IF if (condition) { Process… }
محاضرة 1: مقدمة للمسـاق و مراجعـة للأساسيـات
Calcul réfléchi 2 Multiplier par 5.
Computer Science Core Concepts
Control Structure Chapter 3.
L'autorisation d'accès à cette présentation est actuellement restreinte. Si vous n'utilisez pas Microsoft Office 2003 ou un programme prenant en charge.
PROGRAM FLOWCHART Selection Statements.
Control Structure.
P RÉSENTATION DU RAPPORT DE PROJET DE FIN D ’ ÉTUDE Suiveur solaire suivant deux axes avec un enregistrement de data.
Chapter 6 Conditionals.
Presentation transcript:

TP ISN Terminale S Instruction if (Programmation Java)

I) instruction if Cette instruction permet au programme de faire des choix ;

Syntaxe : if (condition) { instructions1 } { instructions2 }

Syntaxe : if (condition) { instructions1 } { instructions2 } // la condition est dite « booléenne » Elle peut prendre 2 valeurs : Vraie (true) Ou Fausse (false)

Syntaxe : if (condition) { instructions1 } // si la condition est vraie, le programme exécute « instructions 1 »

Exemple : if (score > 1000) // condition System.out.println("Excellent score !");

b) Variante : if...else if (condition) { série d'instructions 1} else { série d'instructions 2}

Exemple : if (score > 1000) System.out.println("Excellent score !"); else System.out.println("vous ferez mieux la prochaine fois !");

c) Variante 2 : if...else { if ()..) if (condition1) { série d'instructions 1} else if (condition2) {série d'instructions 2} else {série d'instructions 3}

Type de conditions Exemples : If ( x > 20 ) If ( y > = 30 ) If ( a <= b ) If ( z = = 12 ) // notez le double égal If ( c ! = 5)

Pour combiner des conditions : Opérateurs : && (ET) | | (OU) ! (NON) Exemple : if (x > 0 ) && ( x < 20 )

Utilisation de la structure switch case Pour éviter d’avoir un grand nombre de « if else », on peut utiliser la structure switch ( ) { case : }

Structure switch case switch (valeur) { case (valeur1) : {instruction 1} // effectuée si valeur = valeur1 break; // sort de la structure case (valeur2) : {instruction 2} // effectuée si valeur = valeur2 break; // sort de la structure default : {instruction 3} // effectuée par défaut}

Exemple : String langue = "francais"; Switch (langue) { case "francais" : System.out.println(" Bonjour ! "); break; case "italiano": System.out.println(" Buongiorno ! "); break; default: System.out.println (" Hello ! "); }