<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>les structures conditionnelles - F2School</title>
	<atom:link href="https://f2school.com/tag/les-structures-conditionnelles/feed/" rel="self" type="application/rss+xml" />
	<link>https://f2school.com/tag/les-structures-conditionnelles/</link>
	<description>Votre bibliothèque en ligne</description>
	<lastBuildDate>Thu, 01 Oct 2020 13:30:05 +0000</lastBuildDate>
	<language>fr-FR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://f2school.com/wp-content/uploads/2019/09/69591802_108099623904091_8806667596762972160_n-150x150.png</url>
	<title>les structures conditionnelles - F2School</title>
	<link>https://f2school.com/tag/les-structures-conditionnelles/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Structures conditionnelles en langage C</title>
		<link>https://f2school.com/structures-conditionnelles-en-langage-c/</link>
					<comments>https://f2school.com/structures-conditionnelles-en-langage-c/#comments</comments>
		
		<dc:creator><![CDATA[F2School]]></dc:creator>
		<pubDate>Thu, 26 Dec 2019 19:58:54 +0000</pubDate>
				<category><![CDATA[Algorithme et Programmation]]></category>
		<category><![CDATA[Informatique]]></category>
		<category><![CDATA[langage c]]></category>
		<category><![CDATA[langage c cours]]></category>
		<category><![CDATA[langage c pdf]]></category>
		<category><![CDATA[langage de programmation]]></category>
		<category><![CDATA[langage de programmation c]]></category>
		<category><![CDATA[les structures conditionnelles]]></category>
		<category><![CDATA[structure conditionnelle]]></category>
		<category><![CDATA[structure conditionnelle c]]></category>
		<category><![CDATA[structures conditionnelles]]></category>
		<guid isPermaLink="false">http://f2school.com/?p=3205</guid>

					<description><![CDATA[<p>Structures conditionnelles en langage C La résolution de certains problèmes algorithmique ne peut se faire que sous condition et pour chaque condition un traitement spécifique sera déclenché et exclura les traitements des autres conditions &#160;Exemple: On veut afficher le résultat d’un étudiant (Echec, Succès) à partir de sa moyenne. Donc on a Besoin d’une structure [&#8230;]</p>
<p>The post <a href="https://f2school.com/structures-conditionnelles-en-langage-c/">Structures conditionnelles en langage C</a> first appeared on <a href="https://f2school.com">F2School</a>.</p>
<p>L’article <a href="https://f2school.com/structures-conditionnelles-en-langage-c/">Structures conditionnelles en langage C</a> est apparu en premier sur <a href="https://f2school.com">F2School</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wp-block-image"><figure class="aligncenter size-large"><img fetchpriority="high" decoding="async" width="1024" height="574" src="http://f2school.com/wp-content/uploads/2020/03/Structures-conditionnelles-en-langage-C-1024x574.png" alt="Structures conditionnelles en langage C" class="wp-image-5668" srcset="https://f2school.com/wp-content/uploads/2020/03/Structures-conditionnelles-en-langage-C-1024x574.png 1024w, https://f2school.com/wp-content/uploads/2020/03/Structures-conditionnelles-en-langage-C-600x337.png 600w, https://f2school.com/wp-content/uploads/2020/03/Structures-conditionnelles-en-langage-C-300x168.png 300w, https://f2school.com/wp-content/uploads/2020/03/Structures-conditionnelles-en-langage-C-768x431.png 768w, https://f2school.com/wp-content/uploads/2020/03/Structures-conditionnelles-en-langage-C.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></div>



<span id="more-3205"></span>



<p><strong>Structures conditionnelles en langage C</strong></p>



<p>La résolution de certains problèmes algorithmique ne peut se faire que sous condition et pour chaque condition un traitement spécifique sera déclenché et exclura les traitements des autres conditions</p>



<h6 class="wp-block-heading"><strong>&nbsp;Exemple:</strong></h6>



<p> On veut afficher le résultat d’un étudiant (Echec, Succès) à partir de sa moyenne. </p>



<p>Donc on a Besoin d’une structure qui évalue la condition de sa réussite !</p>



<h5 class="wp-block-heading">  Formes de structures conditionnelles&nbsp;: </h5>



<p>On distingue plusieurs formes de structures
conditionnelles&nbsp;:</p>



<p>&nbsp;<strong>Structure conditionnelle à un seul
choix&nbsp;:</strong> Il s’agit d’un traitement qui ne peut s’exécuter que si une
condition logique est satisfaite ; dans le cas contraire, rien ne devrait se
passer</p>



<p><strong>Structure
conditionnelle à deux choix&nbsp;:</strong> Il s’agit d’un
traitement qui ne peut s’exécuter que si une condition logique est satisfaite ;
dans le cas contraire, un autre traitement sera exécuté.</p>



<p><strong>Structure
conditionnelle imbriquée&nbsp;:</strong> Il s’agit d’un
traitement qui ne peut s’exécuter que si une condition logique est satisfaite ;
dans le cas contraire, un autre traitement sera exécuté. Les différents
traitements ne comportent plus uniquement des actions simples mais on peut leur
imbriquer des structures conditionnelles</p>



<p><strong>Structure
conditionnelle à choix multiple&nbsp;:</strong> Une structure à choix
multiple est une structure qui à partir d’un choix va se positionner sur le bon
traitement sans passer par les autres</p>



<p><strong>Télécharger le cours sur les Structures conditionnelles en langage C</strong></p>


<a href="https://f2school.com/wp-content/uploads/2019/12/structures-conditionnelles-en-langage-c.pdf" class="pdfemb-viewer" style="" data-width="max" data-height="max" data-toolbar="bottom" data-toolbar-fixed="on">structures-conditionnelles-en-langage-c</a>
<p class="wp-block-pdfemb-pdf-embedder-viewer"></p>



<p class="has-text-align-center has-very-dark-gray-color has-pale-cyan-blue-background-color has-text-color has-background"><strong><a href="http://f2school.com/wp-content/uploads/2019/12/structures-conditionnelles-en-langage-c.pdf" target="_blank" rel="noreferrer noopener" aria-label="Télécharger ICI (s’ouvre dans un nouvel onglet)">Télécharger ICI</a></strong></p>



<hr class="wp-block-separator has-text-color has-background has-vivid-cyan-blue-background-color has-vivid-cyan-blue-color is-style-wide"/>



<h4 class="has-vivid-cyan-blue-color has-text-color wp-block-heading">Voir aussi :</h4>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-f-2-school"><div class="wp-block-embed__wrapper">
<blockquote class="wp-embedded-content" data-secret="jOtva3Ds2o"><a href="https://f2school.com/les-tableaux-en-langage-c/">Les tableaux en langage C &#8211; Cours &#8211; Programmation en C</a></blockquote><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"  title="« Les tableaux en langage C &#8211; Cours &#8211; Programmation en C » &#8212; F2School" src="https://f2school.com/les-tableaux-en-langage-c/embed/#?secret=jOtva3Ds2o" data-secret="jOtva3Ds2o" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
</div></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-f-2-school"><div class="wp-block-embed__wrapper">
<blockquote class="wp-embedded-content" data-secret="7q8YYuKoa6"><a href="https://f2school.com/le-type-enregistrement-en-langage-c/">Structures de données en c : Type enregistrement</a></blockquote><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"  title="« Structures de données en c : Type enregistrement » &#8212; F2School" src="https://f2school.com/le-type-enregistrement-en-langage-c/embed/#?secret=7q8YYuKoa6" data-secret="7q8YYuKoa6" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
</div></figure>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-f-2-school"><div class="wp-block-embed__wrapper">
<blockquote class="wp-embedded-content" data-secret="9mwPbMrgzC"><a href="https://f2school.com/les-listes-chainees-en-langage-c/">Les listes chaînées en langage C &#8211; Programmation C</a></blockquote><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"  title="« Les listes chaînées en langage C &#8211; Programmation C » &#8212; F2School" src="https://f2school.com/les-listes-chainees-en-langage-c/embed/#?secret=9mwPbMrgzC" data-secret="9mwPbMrgzC" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
</div></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-f-2-school"><div class="wp-block-embed__wrapper">
<blockquote class="wp-embedded-content" data-secret="qsdV08mvDp"><a href="https://f2school.com/structures-repetitives-en-c/">Structures répétitives en C &#8211; langage C</a></blockquote><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"  title="« Structures répétitives en C &#8211; langage C » &#8212; F2School" src="https://f2school.com/structures-repetitives-en-c/embed/#?secret=qsdV08mvDp" data-secret="qsdV08mvDp" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
</div></figure>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-f-2-school"><div class="wp-block-embed__wrapper">
<blockquote class="wp-embedded-content" data-secret="VKIBnPh4O8"><a href="https://f2school.com/les-fonctions-en-langage-c/">Les fonctions en langage C &#8211; Programmation en C</a></blockquote><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"  title="« Les fonctions en langage C &#8211; Programmation en C » &#8212; F2School" src="https://f2school.com/les-fonctions-en-langage-c/embed/#?secret=VKIBnPh4O8" data-secret="VKIBnPh4O8" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
</div></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-f-2-school"><div class="wp-block-embed__wrapper">
<blockquote class="wp-embedded-content" data-secret="NxFJFAlVdT"><a href="https://f2school.com/algorithme/">Algorithme : cours, Résumés et exercices corrigés</a></blockquote><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"  title="« Algorithme : cours, Résumés et exercices corrigés » &#8212; F2School" src="https://f2school.com/algorithme/embed/#?secret=NxFJFAlVdT" data-secret="NxFJFAlVdT" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
</div></figure>
</div>
</div>



<hr class="wp-block-separator has-text-color has-background has-vivid-cyan-blue-background-color has-vivid-cyan-blue-color is-style-wide"/>



<h5 class="has-text-align-center wp-block-heading">Partagez au maximum pour que tout le monde puisse en profiter</h5>



<hr class="wp-block-separator has-text-color has-background has-vivid-cyan-blue-background-color has-vivid-cyan-blue-color is-style-wide"/><p>The post <a href="https://f2school.com/structures-conditionnelles-en-langage-c/">Structures conditionnelles en langage C</a> first appeared on <a href="https://f2school.com">F2School</a>.</p><p>L’article <a href="https://f2school.com/structures-conditionnelles-en-langage-c/">Structures conditionnelles en langage C</a> est apparu en premier sur <a href="https://f2school.com">F2School</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://f2school.com/structures-conditionnelles-en-langage-c/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
	</channel>
</rss>
