<?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/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>Worth Living &#187; 条件分岐と繰り返し・制御構造</title>
	<atom:link href="https://worthliv.com/category/cpp/cpp-condition/feed" rel="self" type="application/rss+xml" />
	<link>https://worthliv.com</link>
	<description>楽しく幸せに人生を送るためにはどうすれば良いのか？人生の要素をお金、仕事、勉強、プライベート、健康、心の6要素に分類して考察しています。プログラミング入門に関する記事も掲載。</description>
	<lastBuildDate>Wed, 09 Mar 2016 04:20:46 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/category/cpp/cpp-condition/feed" />
	<item>
		<title>switch case文での条件分岐</title>
		<link>https://worthliv.com/cpp_switch_case.html</link>
		<comments>https://worthliv.com/cpp_switch_case.html#comments</comments>
		<pubDate>Mon, 03 Jun 2013 11:12:31 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[条件分岐と繰り返し・制御構造]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1315</guid>
		<description><![CDATA[C++のswitch case文は、PHPと全く同じですので、PHPが分かる人は飛ばしてOKです。 基本の形式は以下の通りです。 スポンサーリンク switch (式) case 定数1: 処理1 ・・・ break;  [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_switch_case.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_switch_case.html" />
	</item>
		<item>
		<title>for文でのループ・繰り返し</title>
		<link>https://worthliv.com/cpp_for.html</link>
		<comments>https://worthliv.com/cpp_for.html#comments</comments>
		<pubDate>Mon, 03 Jun 2013 10:41:51 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[条件分岐と繰り返し・制御構造]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1314</guid>
		<description><![CDATA[C/C++では、for文によるループ処理も可能です。 while、forともにPHPと書き方が同じですので、私にはとても分かりやすいです。 スポンサーリンク for (初期化; 条件; 反復文) 処理; 基本的な書き方は [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_for.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_for.html" />
	</item>
		<item>
		<title>break文とcontinue文</title>
		<link>https://worthliv.com/cpp_breakcontinue.html</link>
		<comments>https://worthliv.com/cpp_breakcontinue.html#comments</comments>
		<pubDate>Mon, 03 Jun 2013 03:52:15 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[条件分岐と繰り返し・制御構造]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1313</guid>
		<description><![CDATA[breakとcontinueの例を見るために、前のページ（while文でのループ・繰り返し）で、例に出したフィボナッチ数列を少し書き換えてみます。 スポンサーリンク break文 break文を用いると、ループ処理から、 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_breakcontinue.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_breakcontinue.html" />
	</item>
		<item>
		<title>while文でのループ・繰り返し</title>
		<link>https://worthliv.com/cpp_while.html</link>
		<comments>https://worthliv.com/cpp_while.html#comments</comments>
		<pubDate>Mon, 03 Jun 2013 03:37:21 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[条件分岐と繰り返し・制御構造]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1312</guid>
		<description><![CDATA[while文の書き方は、多くのプログラムで共通ですので、分かりやすいでしょう。 スポンサーリンク while (&#60;条件&#62;) &#60;処理&#62;; という書き方であり、whileのすぐ後の条件がtrueの間は [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_while.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_while.html" />
	</item>
		<item>
		<title>if else文・条件分岐</title>
		<link>https://worthliv.com/cpp_if_else.html</link>
		<comments>https://worthliv.com/cpp_if_else.html#comments</comments>
		<pubDate>Mon, 03 Jun 2013 03:03:53 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[条件分岐と繰り返し・制御構造]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1311</guid>
		<description><![CDATA[ここまでは、順次実行（上から順に実行される）のプログラムのみでした。 ここからは、if else文による条件分岐や、for、whileなどによるループ処理（繰り返し実行）などを紹介していきます。 と言っても、PHPやPe [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_if_else.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_if_else.html" />
	</item>
	</channel>
</rss>
