<?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[Schaltjahr]]></title><description><![CDATA[<p>ich hab mir mal was über den &quot;modulo-operator&quot; durchgelesen.<br />
habs auch so weit verstanden.<br />
Nur: ich wollte eine überprüfung, ob ein bestimmtes jahr ein schaltjahr ist.<br />
Durch recherchen hab ich rausgefunden wie das funkt mit dem schaltjahr.<br />
Jedoch scheint irgendwo ein fehler zu sein.<br />
PLUS: ich wollte eine Eingabe machen, ein benutzer soll ein Jahr eingeben und dann sagt das programm: schaltjahr oder nicht....kapier ich nicht...hier der quelltext soweit...</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;

using namespace std;

int main()
{
    bool istSchaltjahr(int jahr);
{
   if(jahr%400==0) return true;
   else if(jahr%100==0) return false;
   else if(jahr%4==0) return true;
   else return false;

   cin &gt;&gt;jahr;

};
    system(&quot;PAUSE&quot;);
    return EXIT_SUCCESS;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/123541/schaltjahr</link><generator>RSS for Node</generator><lastBuildDate>Sun, 23 Aug 2026 14:58:44 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/123541.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 17 Oct 2005 19:18:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Schaltjahr on Mon, 17 Oct 2005 19:18:01 GMT]]></title><description><![CDATA[<p>ich hab mir mal was über den &quot;modulo-operator&quot; durchgelesen.<br />
habs auch so weit verstanden.<br />
Nur: ich wollte eine überprüfung, ob ein bestimmtes jahr ein schaltjahr ist.<br />
Durch recherchen hab ich rausgefunden wie das funkt mit dem schaltjahr.<br />
Jedoch scheint irgendwo ein fehler zu sein.<br />
PLUS: ich wollte eine Eingabe machen, ein benutzer soll ein Jahr eingeben und dann sagt das programm: schaltjahr oder nicht....kapier ich nicht...hier der quelltext soweit...</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;

using namespace std;

int main()
{
    bool istSchaltjahr(int jahr);
{
   if(jahr%400==0) return true;
   else if(jahr%100==0) return false;
   else if(jahr%4==0) return true;
   else return false;

   cin &gt;&gt;jahr;

};
    system(&quot;PAUSE&quot;);
    return EXIT_SUCCESS;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/894512</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/894512</guid><dc:creator><![CDATA[XaTrIxX]]></dc:creator><pubDate>Mon, 17 Oct 2005 19:18:01 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Mon, 17 Oct 2005 19:21:12 GMT]]></title><description><![CDATA[<p>Besser du ließt dir nochmals das Kapitel über Funktionen durch, darin besteht das Problem hier.</p>
<p>Gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/post/894520</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/894520</guid><dc:creator><![CDATA[FireFlow]]></dc:creator><pubDate>Mon, 17 Oct 2005 19:21:12 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Mon, 17 Oct 2005 20:01:50 GMT]]></title><description><![CDATA[<p>Ich denke es sollte ungefähr so aus sehen:</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
using namespace std;
bool istSchaltjahr(int);//Hier wird die Funktion wie eine variable deklariert. Aufbau: bool(rückgabewert) istSchaltjahr(name der funktion) (int)(wert der an die funktion übergeben wird von main()

bool istSchaltjahr(int jahr)//Hier beginnt die funktion

{
   if(jahr%400==0) return true;
   else if(jahr%100==0) return false;
   else if(jahr%4==0) return true;
   else return false;
}

int main()
{
   cout.setf(cout.boolalpha);
   cout&lt;&lt;&quot;Geben sie ein Jahr ein.&quot;&lt;&lt;endl;
   int jahr;
   cin &gt;&gt;jahr;
   jahr=istSchaltjahr(jahr);//Hier soll jahr an die funktion istSchaltjahr als jahr übergeben werden
   cout&lt;&lt;&quot;Das Ergebnis ist &quot;&lt;&lt;jahr&lt;&lt;endl;//Hier soll dann true/false stehen anstelle von 0/1
   system(&quot;PAUSE&quot;);
 }
</code></pre>
<p>Wenn die ausgabe true ist wird leider 1 anstelle von true aus gegeben und statt false kommt 0. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/894564</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/894564</guid><dc:creator><![CDATA[MartinMilbret]]></dc:creator><pubDate>Mon, 17 Oct 2005 20:01:50 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Mon, 17 Oct 2005 19:58:35 GMT]]></title><description><![CDATA[<p>MartinMilbret schrieb:</p>
<blockquote>
<p>Ich denke es sollte ungefähr so aus sehen:</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
using namespace std;
//bool istSchaltjahr(int); // weg

bool istSchaltjahr(int jahr)
{
   //cout.setf(cout.boolalpha); // hier auf jeden fall weg
   if(jahr%400==0) return true;
   else if(jahr%100==0) return false;
   else if(jahr%4==0) return true;
   else return false;
}

int main()
{
   //cout.setf(cout.boolalpha); // unnötig
   cout &lt;&lt; &quot;Geben sie ein Jahr ein.&quot; &lt;&lt;endl;
   int jahr;
   cin &gt;&gt; jahr;
   if(istSchaltjahr(jahr)) { // wozu gibts denn if/else?
       cout &lt;&lt; &quot;Das Jahr ist ein Schaltjahr.&quot; &lt;&lt; endl; // \n tuts auch
   }
   else {
       cout &lt;&lt; &quot;Das Jahr ist kein Schaltjahr.&quot; &lt;&lt; endl;
   }
   //system(&quot;PAUSE&quot;); // weg
 }
</code></pre>
</blockquote>
<p>Gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/post/894576</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/894576</guid><dc:creator><![CDATA[FireFlow]]></dc:creator><pubDate>Mon, 17 Oct 2005 19:58:35 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Mon, 17 Oct 2005 19:59:04 GMT]]></title><description><![CDATA[<p>MartinMilbert schrieb:</p>
<blockquote>
<p>Wenn die ausgabe true ist wird leider 1 anstelle von true aus gegeben und statt false kommt 0. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
</blockquote>
<p>Steht da eine Frage o.ä. dahinter?<br />
Wenn ja: Das liegt daran, dass du den Return-Wert von istSchaltjahr (bool) in einer int Variablen speicherst. (wobei der bool-Wert implizit in einen int-Wert gecastet wird). <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
<p>Gruß Caipi</p>
]]></description><link>https://www.c-plusplus.net/forum/post/894577</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/894577</guid><dc:creator><![CDATA[Caipi]]></dc:creator><pubDate>Mon, 17 Oct 2005 19:59:04 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Mon, 17 Oct 2005 20:05:16 GMT]]></title><description><![CDATA[<p>Ich muss mich gegen programmierprofis wie euch noch geschlagegen geben <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/894583</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/894583</guid><dc:creator><![CDATA[MartinMilbret]]></dc:creator><pubDate>Mon, 17 Oct 2005 20:05:16 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Mon, 17 Oct 2005 20:38:27 GMT]]></title><description><![CDATA[<p>sry: kann mir jemand folgendes genau erklären: was läuft da ab:</p>
<pre><code class="language-cpp">if(istSchaltjahr(jahr))
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/894591</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/894591</guid><dc:creator><![CDATA[XaTrIxX]]></dc:creator><pubDate>Mon, 17 Oct 2005 20:38:27 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Mon, 17 Oct 2005 20:43:22 GMT]]></title><description><![CDATA[<p>genauer gesagt: woher weiß man:<br />
ja der sag einfach if- boolean<br />
else blabla</p>
<p>müsste es da nicht heißen<br />
if(istSchaltjahr(jahr))=true<br />
oder so was...<br />
ich muss gestehen...seit wir c++ machen<br />
generell<br />
DIE BOOLEAN CHECK ICH EINFACH NICHT!!!!<br />
ich denk mir immer wieder, wiesowiesowieso!<br />
ja klar:<br />
ich: herr lehrer, ich verstehe die funktionsweise einer boolean nicht!<br />
lehrer: na, boolean ist einfach true/false, 0 oder 1....1 bit größe...<br />
ich: immer noch unklar!<br />
lehrer: ganz normaler datentyp...</p>
<p>HILFT MIR NULL!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/894596</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/894596</guid><dc:creator><![CDATA[XaTrIxX]]></dc:creator><pubDate>Mon, 17 Oct 2005 20:43:22 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Mon, 17 Oct 2005 21:14:13 GMT]]></title><description><![CDATA[<p>die ganzen Vergleiche (== != &lt; &gt; .......) sind doch auch Funktionen, die halt Wahrheitswerte liefern. Also wenn eine Funktion true liefert und du das Ergebnis mit true vergleichst machst zuviel, es ist nicht falsch aber unnötig</p>
<p>Boolean heißt doch entweder es ist wahr oder es ist falsch. Du stellst dem Computer eine Frage, die er nur mit ja oder nein (wahr oder falsch) beantworten kann.</p>
<pre><code>if (Bedingung) {
  bedingung ist richtig bzw. test endete mit ja/true
}
else {
  bedingung ist falsch bzw. test endete mit nein/false
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/894608</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/894608</guid><dc:creator><![CDATA[imhotep]]></dc:creator><pubDate>Mon, 17 Oct 2005 21:14:13 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Mon, 17 Oct 2005 21:18:30 GMT]]></title><description><![CDATA[<p>also<br />
bool var;<br />
if(bed.)<br />
bool true;<br />
else(bed.)<br />
bool false;</p>
<p>??? oder wie sieht da die anwendung aus?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/894613</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/894613</guid><dc:creator><![CDATA[XaTrIxX]]></dc:creator><pubDate>Mon, 17 Oct 2005 21:18:30 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Tue, 18 Oct 2005 08:12:10 GMT]]></title><description><![CDATA[<p>XaTrIxX schrieb:</p>
<blockquote>
<p>also<br />
bool var;<br />
if(bed.)<br />
bool true;<br />
else(bed.)<br />
bool false;</p>
<p>??? oder wie sieht da die anwendung aus?</p>
</blockquote>
<p>Das versteh ich wiederrum nicht. Die Anwendung ist einfach, dass du einen &quot;Schalter&quot; (Flag) hast, der eben nur 2 Zustände kennt: wahr (true bzw. 1) oder unwahr (false bzw. 0).</p>
<p>Wenn ich dich frage, ob du die Antworten hier im Thread komplett verstehst, kannst du auch nur mit ja oder nein antworten (vielleicht oder weiß nicht geht nicht).</p>
<pre><code class="language-cpp">bool XaTrIxX_verstehts = false;
if(XaTrIxX_verstehts == true) // gleichbedeutend mit 'if (XaTrIxX_verstehts)'
{
  // Thread beendet, keine Erklärungen nötig
}
else if (XaTrIxX_verstehts == false) // oder 'else' oder 'else if (!XaTrIxX_verstehts)'
{
   // gehe ins Detail und erkläre es nochmal
}
</code></pre>
<p>BOOL ist einfach eine Entweder-Oder Entscheidung.<br />
Und dein erstes Programmierbeispiel ist komplett falsch (syntaktisch, aber besonders logisch). Geh doch einfach von oben nach unten den Code durch, und überleg was gemacht wird <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/894810</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/894810</guid><dc:creator><![CDATA[Cpt_Future]]></dc:creator><pubDate>Tue, 18 Oct 2005 08:12:10 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Tue, 18 Oct 2005 12:11:36 GMT]]></title><description><![CDATA[<p>also sagen wir:<br />
ich will ein quiz machen, dann sag ich sowas wie:</p>
<pre><code class="language-cpp">int antwort;
cout &lt;&lt;&quot;Quiz blabla...&quot;&lt;&lt;endl;
cout &lt;&lt;&quot;Frage:Abkürzung,Prozessor (engl.)&quot;&lt;&lt;endl; //richtige antwort wäre &quot;CPU&quot;
cin &lt;&lt;antwort; 
bool antwort= false;   // übrigends, warum = false?!, wie definiere ich, was &quot;RICHTIG IST?!?!!?
if(antwort== true);
{
//cout richtig usw.
}
if(antwort == false)
{
//cout falsch blabla
}
</code></pre>
<p>^^ich glaube irgendwas fehlt mir in der zeile<br />
bool antwort=....<br />
habe aber keine genaue vorstellung was GENAU!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/895052</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/895052</guid><dc:creator><![CDATA[XaTrIxX]]></dc:creator><pubDate>Tue, 18 Oct 2005 12:11:36 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Tue, 18 Oct 2005 12:25:37 GMT]]></title><description><![CDATA[<p>erstens wäre das &quot;cin <strong>&gt;&gt;</strong> antwort;&quot; und zweitens wäre dafür eher geeignet:</p>
<pre><code class="language-cpp">if(antwort==richtige_antwort)
  cout&lt;&lt;&quot;Korrekt\n&quot;;
else
  cout&lt;&lt;&quot;Leider falsch!\n&quot;;
</code></pre>
<p>(und in &quot;richtige_antwort&quot; hast du vorher definiert, welche Antwortmöglichkeit korrekt wäre)</p>
<p>btw, bei Multiple Choice Tests reicht int aus, wenn der Spieler wirklich das Wort &quot;CPU&quot; als Lösung eingeben soll, ist std::string wohl besser geeignet.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/895062</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/895062</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Tue, 18 Oct 2005 12:25:37 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Tue, 18 Oct 2005 12:46:44 GMT]]></title><description><![CDATA[<p>okay, machen wir´s so:<br />
was ist hier noch falsch?</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
using namespace std;

int main()
{
int antwort;
cout &lt;&lt;&quot;Quiz blabla...&quot;&lt;&lt;endl;
cout &lt;&lt;&quot;Frage:Abkürzung,Prozessor (engl.)&quot;&lt;&lt;endl; //richtige antwort wäre &quot;CPU&quot;
cin &gt;&gt;antwort;
bool richtige_antwort=true ;   // übrigends, warum = false?!, wie definiere ich, was &quot;RICHTIG IST?!?!!?
if (richtige_antwort==cpu);
{
cout &lt;&lt;&quot;Antwort richtig!&quot;&lt;&lt;endl; 
}
else(richtige_antwort == false)
{
cout &lt;&lt;&quot;Antwort falsch!&quot;&lt;&lt;endl;
}
    system(&quot;PAUSE&quot;);
    return EXIT_SUCCESS;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/895096</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/895096</guid><dc:creator><![CDATA[XaTrIxX]]></dc:creator><pubDate>Tue, 18 Oct 2005 12:46:44 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Tue, 18 Oct 2005 12:51:44 GMT]]></title><description><![CDATA[<p>ich nehme an, der Bezeichner cpu ist unbekannt - und für eine Quizfrage ist boolean auch nicht gerade geeignet (das kann nämlich nur zwei Werte annehmen - wahr(true) oder falsch(false).</p>
<pre><code class="language-cpp">std::string antwort;
std::string richtig=&quot;CPU&quot;;// &lt;- genau so legst du die richtige Antwort fest
cout&lt;&lt;&quot;Was steuert einen PC?&quot;;
cin&gt;&gt;antwort;
if(antwort==richtig)// stimmt die Benutzereingabe mit der richtigen Antwort überein?
  cout&lt;&lt;&quot;Korrekt.\n&quot;;
else
  cout&lt;&lt;&quot;Leider falsch!\n&quot;;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/895099</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/895099</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Tue, 18 Oct 2005 12:51:44 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Tue, 18 Oct 2005 12:52:28 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">bool richtige_antwort = (antwort == 42);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/895102</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/895102</guid><dc:creator><![CDATA[MFK]]></dc:creator><pubDate>Tue, 18 Oct 2005 12:52:28 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Tue, 18 Oct 2005 13:11:54 GMT]]></title><description><![CDATA[<p>danke für beide beiträge! ich glaub nach einigen beispielen kapier ichs 100%ig..danke leute...ich weiß...mühsam mit mir...oder?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/895121</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/895121</guid><dc:creator><![CDATA[XaTrIxX]]></dc:creator><pubDate>Tue, 18 Oct 2005 13:11:54 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Tue, 18 Oct 2005 13:23:04 GMT]]></title><description><![CDATA[<p>so ich hab´s nun raus:<br />
hab das mal ausprobiert, nun bringt er hier in zeile 17 noch ein fehler<br />
syntax error before else</p>
<pre><code class="language-cpp">#include &lt;cstdlib&gt;
#include &lt;iostream&gt;

using namespace std;

int main()
{
int antwort;
cout &lt;&lt;&quot;Quiz blabla...&quot;&lt;&lt;endl;
cout &lt;&lt;&quot;Frage:55+44=&quot;&lt;&lt;endl; //richtige antwort wäre &quot;CPU&quot;
cin &gt;&gt;antwort;
bool richtige_antwort = (antwort == 99);   // übrigends, warum = false?!, wie definiere ich, was &quot;RICHTIG IST?!?!!?
     if (antwort==richtige_antwort);
        {
        cout &lt;&lt;&quot;Antwort richtig!&quot;&lt;&lt;endl; 
        }
     else;
        {
        cout &lt;&lt;&quot;Antwort falsch!&quot;&lt;&lt;endl;
        }
    system(&quot;PAUSE&quot;);
    return EXIT_SUCCESS;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/895127</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/895127</guid><dc:creator><![CDATA[XaTrIxX]]></dc:creator><pubDate>Tue, 18 Oct 2005 13:23:04 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Tue, 18 Oct 2005 13:35:21 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">if(richtige_antwort) // KEIN SEMIKOLON, AUCH NICHT BEI ELSE
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/895141</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/895141</guid><dc:creator><![CDATA[MFK]]></dc:creator><pubDate>Tue, 18 Oct 2005 13:35:21 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Tue, 18 Oct 2005 13:41:00 GMT]]></title><description><![CDATA[<p>lol, ich kann ins programm, jedoch...<br />
ich gebe 99 ein und: &quot;ANTWORT FALSCH&quot;<br />
lol...ich denke...da ist noch was techn. falsch</p>
]]></description><link>https://www.c-plusplus.net/forum/post/895146</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/895146</guid><dc:creator><![CDATA[XaTrIxX]]></dc:creator><pubDate>Tue, 18 Oct 2005 13:41:00 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Tue, 18 Oct 2005 13:44:18 GMT]]></title><description><![CDATA[<p>XaTrIxX schrieb:</p>
<blockquote>
<p>lol...ich denke...da ist noch was techn. falsch</p>
</blockquote>
<p>Und ich denke, du hast die Bedingung in der if-Anweisung noch nicht geändert.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/895152</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/895152</guid><dc:creator><![CDATA[MFK]]></dc:creator><pubDate>Tue, 18 Oct 2005 13:44:18 GMT</pubDate></item><item><title><![CDATA[Reply to Schaltjahr on Tue, 18 Oct 2005 13:47:43 GMT]]></title><description><![CDATA[<p>ach ne....jetzt hab ich n bisschen rumprobiert (&quot;PROBIER-PROGRAMMIERER&quot;)<br />
und ich habs raus...und die 20beiträge nur um mich verstehen zu lassen wie eine boolean funktionert!<br />
danke leute!<br />
jetzt finish!<br />
fertig hier!<br />
cya :p</p>
]]></description><link>https://www.c-plusplus.net/forum/post/895158</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/895158</guid><dc:creator><![CDATA[XaTrIxX]]></dc:creator><pubDate>Tue, 18 Oct 2005 13:47:43 GMT</pubDate></item></channel></rss>