<?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[Problem mit = in c++]]></title><description><![CDATA[<p>Hallo, ich übe gerade an einem Programm, welcher von 3 eingegebenen Zahlen die höchste und die niedrigste Zahl anzeigt.</p>
<p>Mein Problem ist:</p>
<p>int max=a;</p>
<p>if(b&gt;max)<br />
{<br />
max=b; // WIESO STEHT DA &quot;max=b&quot;?WAS BEDEUTET DAS:&quot;=&quot;??<br />
}<br />
if(c&gt;max)<br />
{<br />
max=c;<br />
}</p>
<p>Mit freundlichen grüßen,</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/236841/problem-mit-in-c</link><generator>RSS for Node</generator><lastBuildDate>Sat, 04 Apr 2026 15:50:56 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/236841.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 20 Mar 2009 16:26:13 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Problem mit = in c++ on Fri, 20 Mar 2009 16:26:13 GMT]]></title><description><![CDATA[<p>Hallo, ich übe gerade an einem Programm, welcher von 3 eingegebenen Zahlen die höchste und die niedrigste Zahl anzeigt.</p>
<p>Mein Problem ist:</p>
<p>int max=a;</p>
<p>if(b&gt;max)<br />
{<br />
max=b; // WIESO STEHT DA &quot;max=b&quot;?WAS BEDEUTET DAS:&quot;=&quot;??<br />
}<br />
if(c&gt;max)<br />
{<br />
max=c;<br />
}</p>
<p>Mit freundlichen grüßen,</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1683511</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1683511</guid><dc:creator><![CDATA[KWESTHH]]></dc:creator><pubDate>Fri, 20 Mar 2009 16:26:13 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit = in c++ on Fri, 20 Mar 2009 16:27:45 GMT]]></title><description><![CDATA[<p>Das ist eine Zuweisung. Die Variable &quot;Max&quot; übernimmt den Inhalt aus &quot;b&quot;.</p>
<p>Wenn du etwas vergleichen willst, ist der korrekte Operator &quot;==&quot;.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1683512</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1683512</guid><dc:creator><![CDATA[it0101@loggedoff]]></dc:creator><pubDate>Fri, 20 Mar 2009 16:27:45 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit = in c++ on Fri, 20 Mar 2009 16:36:16 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">int max=a; //hier ist es dir wohl klar?

 if(b&gt;max)
 {
   max=b;            // WIESO STEHT DA &quot;max=b&quot;?WAS BEDEUTET DAS:&quot;=&quot;??
 }
 if(c&gt;max)
 {
   max=c;
 }
</code></pre>
<p>bb</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1683522</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1683522</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Fri, 20 Mar 2009 16:36:16 GMT</pubDate></item></channel></rss>