<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[ich brauche mal eure hilfe bei case]]></title><description><![CDATA[<p>Hi da bin ich wieder , wist ihr warum mann bei case nur bis zur eingabe 9 gehen kann<br />
und nicht in denn 2er bereich wie z.b 10 , 11 oder 12</p>
<p>z.b so :</p>
<pre><code class="language-cpp">case '1':
  { break; }
case '2':
  { break; }
case '3':
  { break; }
case '4':
  { break; }
case '5':
  { break; }
case '6':
  { break; }
case '7':
  { break; }
case '8':
  { break; }
case '9':
  { break; }
case '10':
  { break; }
case '11':
  { break; }
</code></pre>
<p>danke im voraus</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/251766/ich-brauche-mal-eure-hilfe-bei-case</link><generator>RSS for Node</generator><lastBuildDate>Tue, 15 Sep 2026 06:53:31 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/251766.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 10 Oct 2009 07:25:57 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to ich brauche mal eure hilfe bei case on Sat, 10 Oct 2009 07:25:57 GMT]]></title><description><![CDATA[<p>Hi da bin ich wieder , wist ihr warum mann bei case nur bis zur eingabe 9 gehen kann<br />
und nicht in denn 2er bereich wie z.b 10 , 11 oder 12</p>
<p>z.b so :</p>
<pre><code class="language-cpp">case '1':
  { break; }
case '2':
  { break; }
case '3':
  { break; }
case '4':
  { break; }
case '5':
  { break; }
case '6':
  { break; }
case '7':
  { break; }
case '8':
  { break; }
case '9':
  { break; }
case '10':
  { break; }
case '11':
  { break; }
</code></pre>
<p>danke im voraus</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1790423</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1790423</guid><dc:creator><![CDATA[Rene.p.93]]></dc:creator><pubDate>Sat, 10 Oct 2009 07:25:57 GMT</pubDate></item><item><title><![CDATA[Reply to ich brauche mal eure hilfe bei case on Sat, 10 Oct 2009 07:41:04 GMT]]></title><description><![CDATA[<p>weil du auf einzelne Zeichen überprüfst und alle Zahlen über 9 die du eintippst mehr als ein Zeichen haben. Lies einen String, ein, wandle ihn in einen int um und dann gehts. Wie das geht steht in der FAQ</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1790426</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1790426</guid><dc:creator><![CDATA[pumuckl]]></dc:creator><pubDate>Sat, 10 Oct 2009 07:41:04 GMT</pubDate></item><item><title><![CDATA[Reply to ich brauche mal eure hilfe bei case on Sat, 10 Oct 2009 07:50:20 GMT]]></title><description><![CDATA[<p>Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1790427</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1790427</guid><dc:creator><![CDATA[Rene.p.93]]></dc:creator><pubDate>Sat, 10 Oct 2009 07:50:20 GMT</pubDate></item><item><title><![CDATA[Reply to ich brauche mal eure hilfe bei case on Sat, 10 Oct 2009 14:13:05 GMT]]></title><description><![CDATA[<p>wenn du nur auf zahlen prüfen willst:</p>
<pre><code class="language-cpp">int x;
std::cin &gt;&gt; x;
switch(x)
{
case 23:
 std::cout &lt;&lt; &quot;23!!!!!&quot; &lt;&lt; std::endl
 break;
}
</code></pre>
<p>bb</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1790592</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1790592</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Sat, 10 Oct 2009 14:13:05 GMT</pubDate></item></channel></rss>