<?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[Minimale Geld stückelung]]></title><description><![CDATA[<blockquote>
<p>Schreiben Sie ein Programm, dass für einen benutzerdefinierten Geldbetrag die minimale Stückelung in Banknoten und -münzen errechnet.</p>
</blockquote>
<p>Und wie findet ihrs?</p>
<pre><code>#include &lt;iostream&gt;

using namespace std;

int main()
{
	unsigned euro = 0;
	unsigned cent = 0;

	cout &lt;&lt; &quot;Euro Anteil: &quot;;
	cin &gt;&gt; euro;

	cout &lt;&lt; &quot;Cent Anteil: &quot;;
	cin &gt;&gt; cent;

	euro += cent / 100;
	cent %= 100;

    if (!euro &amp;&amp; !cent)
    {
        cout &lt;&lt; &quot;Sie armer Schlucker!&quot; &lt;&lt; endl;
        return 0;
    }

	if (euro &gt;= 500)
	{
		cout &lt;&lt; euro / 500 &lt;&lt; &quot;x500EURO&quot;;
		euro %= 500;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (euro &gt;= 200)
	{
		cout &lt;&lt; euro / 200 &lt;&lt; &quot;x200EURO&quot;;
		euro %= 200;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (euro &gt;= 100)
	{
		cout &lt;&lt; euro / 100 &lt;&lt; &quot;x100EURO&quot;;
		euro %= 100;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (euro &gt;= 50)
	{
		cout &lt;&lt; euro / 50 &lt;&lt; &quot;x50EURO&quot;;
		euro %= 50;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (euro &gt;= 20)
	{
		cout &lt;&lt; euro / 20 &lt;&lt; &quot;x20EURO&quot;;
		euro %= 20;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (euro &gt;= 10)
	{
		cout &lt;&lt; euro / 10 &lt;&lt; &quot;x10EURO&quot;;
		euro %= 10;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (euro &gt;= 5)
	{
		cout &lt;&lt; euro / 5 &lt;&lt; &quot;x5EURO&quot;;
		euro %= 5;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (euro &gt;= 2)
	{
		cout &lt;&lt; euro / 2 &lt;&lt; &quot;x2EURO&quot;;
		euro %= 2;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot; &lt;&lt; euro &lt;&lt; &quot;x1EURO&quot;;
			if (cent)
			{
				cout &lt;&lt;  &quot;, &quot;;
			}
		}
	}
	if (cent &gt;= 50)
	{
		cout &lt;&lt; cent / 50 &lt;&lt; &quot;x50CENT&quot;;
		cent %= 50;
		if (cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (cent &gt;= 20)
	{
		cout &lt;&lt; cent / 20 &lt;&lt; &quot;x20CENT&quot;;
		cent %= 20;
		if (cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (cent &gt;= 10)
	{
		cout &lt;&lt; cent / 10 &lt;&lt; &quot;x10CENT&quot;;
		cent %= 10;
		if (cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (cent &gt;= 5)
	{
		cout &lt;&lt; cent / 5 &lt;&lt; &quot;x5CENT&quot;;
		cent %= 5;
		if (cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (cent &gt;= 2)
	{
		cout &lt;&lt; cent / 2 &lt;&lt; &quot;x2CENT&quot;;
		cent %= 2;
		if (cent)
		{
			cout &lt;&lt; cent &lt;&lt; &quot;x1CENT&quot;;
		}
	}

	cout &lt;&lt; '.' &lt;&lt; endl;

	return 0;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/340026/minimale-geld-stückelung</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Apr 2026 12:30:16 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/340026.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 14 Oct 2016 19:59:06 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Minimale Geld stückelung on Fri, 14 Oct 2016 20:03:04 GMT]]></title><description><![CDATA[<blockquote>
<p>Schreiben Sie ein Programm, dass für einen benutzerdefinierten Geldbetrag die minimale Stückelung in Banknoten und -münzen errechnet.</p>
</blockquote>
<p>Und wie findet ihrs?</p>
<pre><code>#include &lt;iostream&gt;

using namespace std;

int main()
{
	unsigned euro = 0;
	unsigned cent = 0;

	cout &lt;&lt; &quot;Euro Anteil: &quot;;
	cin &gt;&gt; euro;

	cout &lt;&lt; &quot;Cent Anteil: &quot;;
	cin &gt;&gt; cent;

	euro += cent / 100;
	cent %= 100;

    if (!euro &amp;&amp; !cent)
    {
        cout &lt;&lt; &quot;Sie armer Schlucker!&quot; &lt;&lt; endl;
        return 0;
    }

	if (euro &gt;= 500)
	{
		cout &lt;&lt; euro / 500 &lt;&lt; &quot;x500EURO&quot;;
		euro %= 500;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (euro &gt;= 200)
	{
		cout &lt;&lt; euro / 200 &lt;&lt; &quot;x200EURO&quot;;
		euro %= 200;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (euro &gt;= 100)
	{
		cout &lt;&lt; euro / 100 &lt;&lt; &quot;x100EURO&quot;;
		euro %= 100;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (euro &gt;= 50)
	{
		cout &lt;&lt; euro / 50 &lt;&lt; &quot;x50EURO&quot;;
		euro %= 50;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (euro &gt;= 20)
	{
		cout &lt;&lt; euro / 20 &lt;&lt; &quot;x20EURO&quot;;
		euro %= 20;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (euro &gt;= 10)
	{
		cout &lt;&lt; euro / 10 &lt;&lt; &quot;x10EURO&quot;;
		euro %= 10;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (euro &gt;= 5)
	{
		cout &lt;&lt; euro / 5 &lt;&lt; &quot;x5EURO&quot;;
		euro %= 5;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (euro &gt;= 2)
	{
		cout &lt;&lt; euro / 2 &lt;&lt; &quot;x2EURO&quot;;
		euro %= 2;
		if (euro || cent)
		{
			cout &lt;&lt; &quot;, &quot; &lt;&lt; euro &lt;&lt; &quot;x1EURO&quot;;
			if (cent)
			{
				cout &lt;&lt;  &quot;, &quot;;
			}
		}
	}
	if (cent &gt;= 50)
	{
		cout &lt;&lt; cent / 50 &lt;&lt; &quot;x50CENT&quot;;
		cent %= 50;
		if (cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (cent &gt;= 20)
	{
		cout &lt;&lt; cent / 20 &lt;&lt; &quot;x20CENT&quot;;
		cent %= 20;
		if (cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (cent &gt;= 10)
	{
		cout &lt;&lt; cent / 10 &lt;&lt; &quot;x10CENT&quot;;
		cent %= 10;
		if (cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (cent &gt;= 5)
	{
		cout &lt;&lt; cent / 5 &lt;&lt; &quot;x5CENT&quot;;
		cent %= 5;
		if (cent)
		{
			cout &lt;&lt; &quot;, &quot;;
		}
	}
	if (cent &gt;= 2)
	{
		cout &lt;&lt; cent / 2 &lt;&lt; &quot;x2CENT&quot;;
		cent %= 2;
		if (cent)
		{
			cout &lt;&lt; cent &lt;&lt; &quot;x1CENT&quot;;
		}
	}

	cout &lt;&lt; '.' &lt;&lt; endl;

	return 0;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2511590</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2511590</guid><dc:creator><![CDATA[HarteWare]]></dc:creator><pubDate>Fri, 14 Oct 2016 20:03:04 GMT</pubDate></item><item><title><![CDATA[Reply to Minimale Geld stückelung on Fri, 14 Oct 2016 20:13:43 GMT]]></title><description><![CDATA[<p>Ist ziemlich viel Wiederholung, schreit nach ner Funktion <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/2511593</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2511593</guid><dc:creator><![CDATA[Techel]]></dc:creator><pubDate>Fri, 14 Oct 2016 20:13:43 GMT</pubDate></item><item><title><![CDATA[Reply to Minimale Geld stückelung on Fri, 14 Oct 2016 20:15:03 GMT]]></title><description><![CDATA[<p>Schonmal ganz gut. Wie du bestimmt gemerkt hat, kommen in deinem Program oft dieselben paar Zeilen Code vor. Könntest du dir vorstellen, wie man diese Redundanz reduzieren könnte?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2511594</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2511594</guid><dc:creator><![CDATA[Fytch]]></dc:creator><pubDate>Fri, 14 Oct 2016 20:15:03 GMT</pubDate></item><item><title><![CDATA[Reply to Minimale Geld stückelung on Fri, 14 Oct 2016 20:15:16 GMT]]></title><description><![CDATA[<p>Irgendwie muss ich gerade an den switch-case Thread hier denken <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f921.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--clown_face"
      title=":clown:"
      alt="🤡"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2511595</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2511595</guid><dc:creator><![CDATA[cpp_Jungspund]]></dc:creator><pubDate>Fri, 14 Oct 2016 20:15:16 GMT</pubDate></item><item><title><![CDATA[Reply to Minimale Geld stückelung on Fri, 14 Oct 2016 20:19:07 GMT]]></title><description><![CDATA[<pre><code>#include &lt;iostream&gt;

using namespace std;

size_t euronen[]= {500,200,100,50,20,10,5,2,1};
size_t cents[]	= {50,20,10,5,2,1};

#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))

int main()
{
    size_t i;
    unsigned euro = 0;
    unsigned cent = 0;

    cout &lt;&lt; &quot;Euro Anteil: &quot;;
    cin &gt;&gt; euro;

    cout &lt;&lt; &quot;Cent Anteil: &quot;;
    cin &gt;&gt; cent;

    euro += cent / 100;
    cent %= 100;

    if (!euro &amp;&amp; !cent)
    {
        cout &lt;&lt; &quot;Sie armer Schlucker!&quot; &lt;&lt; endl;
        return 0;
    }

    for(i = 0;i &lt; ARRAY_SIZE(euronen);i++)
    {
        if(euro &gt;= euronen[i])
        {
            cout &lt;&lt; euro / euronen[i] &lt;&lt; &quot; x &quot; &lt;&lt; euronen[i] &lt;&lt; &quot; EURO\n&quot;;
            euro %= euronen[i];
        }
        if(!euro)
            break;
    }

    for(i = 0;i &lt; ARRAY_SIZE(cents);i++)
    {
        if(cent &gt;= cents[i])
        {
            cout &lt;&lt; cent / cents[i] &lt;&lt; &quot; x &quot; &lt;&lt; cents[i] &lt;&lt; &quot; CENT\n&quot;;
            cent %= cents[i];
        }
        if(!cent)
            break;
    }

    return 0;
}
</code></pre>
<p>Disclaimer: Schnell dahingeschrieben und kann Spuren von C-Paradigmen beinhalten.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2511597</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2511597</guid><dc:creator><![CDATA[dachschaden]]></dc:creator><pubDate>Fri, 14 Oct 2016 20:19:07 GMT</pubDate></item><item><title><![CDATA[Reply to Minimale Geld stückelung on Fri, 14 Oct 2016 20:22:09 GMT]]></title><description><![CDATA[<p>cpp_Jungspund schrieb:</p>
<blockquote>
<p>Irgendwie muss ich gerade an den switch-case Thread hier denken <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f921.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--clown_face"
      title=":clown:"
      alt="🤡"
    /></p>
</blockquote>
<p>Und, wie schon dort gesagt, wäre switch hier entweder unnötig, oder ein bewusstes Zugeständnis an anfängerhaften Code. Siehe dachschadens Lösung, für einen Hinweis, wie eine bessere Richtung aussehen könnte.</p>
<p>PS: Was würdest du hier den überhaupt switchen? Willst du das for-switch Idiom benutzen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2511598</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2511598</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Fri, 14 Oct 2016 20:22:09 GMT</pubDate></item><item><title><![CDATA[Reply to Minimale Geld stückelung on Fri, 14 Oct 2016 20:57:56 GMT]]></title><description><![CDATA[<p>Witzig, ich hatte fast den gleichen Code (als Schleifen), nur dass die Arrays nicht global waren, und dass ich die (wenn 0 dann break) Optimierung vergessen hatte (Ist ja schon mal nur 1/3 so lang, inkl. konstanter Länge von Einlesen etc.</p>
<pre><code>// nicht getestet
#include &lt;iostream&gt;

using namespace std;

int main()
{
    const unsigned N_EURO_ARTEN = 9;
    const unsigned N_CENT_ARTEN = 6;

    unsigned euroArten[N_EURO_ARTEN] = {
        500, 200, 100, 50, 20, 10, 5, 2, 1
    };

    unsigned centArten[N_CENT_ARTEN] = {
        50, 20, 10, 5, 2, 1
    };

    unsigned euro = 0;
    unsigned cent = 0;

    cout &lt;&lt; &quot;Euro Anteil: &quot;;
    cin &gt;&gt; euro;

    cout &lt;&lt; &quot;Cent Anteil: &quot;;
    cin &gt;&gt; cent;

    euro += cent / 100;
    cent %= 100;

    for (unsigned i = 0; i != N_EURO_ARTEN; ++i)
    {
        if (euro &gt;= euroArten[i])
        {
            cout &lt;&lt; euro / euroArten[i] &lt;&lt; 'x' &lt;&lt; euroArten[i] &lt;&lt; &quot;EURO&quot;;
            euro %= euroArten[i];
            if ((euro &amp;&amp; i != N_EURO_ARTEN - 1) || cent)
            {
                cout &lt;&lt; &quot;, &quot;;
            }
        }
    }

    for (unsigned i = 0; i != N_CENT_ARTEN; ++i)
    {
        if (cent &gt;= centArten[i])
        {
            cout &lt;&lt; cent / centArten[i] &lt;&lt; 'x' &lt;&lt; centArten[i] &lt;&lt; &quot;CENT&quot;;
            cent %= centArten[i];
            if (cent &amp;&amp; i != N_CENT_ARTEN - 1)
            {
                cout &lt;&lt; &quot;, &quot;;
            }
        }
    }

    cout &lt;&lt; '.' &lt;&lt; endl;

    return 0;
}
</code></pre>
<p>Das ARRAY_SIZE Makro ist ja schon sexy, man muss nich immer die Länge mitgeben und 0 size array geht ja nicht (ist jetzt bezogen auf C).</p>
<p>Aber dann hat der grundlegende Ansatz ja auf jeden Fall gepasst.</p>
<p>LG</p>
<p>P.S.: Würden euch auch die Haare zu Berge stehen, wenn ihr in der Vorlesung sitzt und hört die ganze Zeit &quot;Deklaration, Deklaration, Deklaration&quot;</p>
<pre><code>int main()
{
    double foobar;  // &lt;-- DEFINITION!!!
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2511600</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2511600</guid><dc:creator><![CDATA[HarteWare]]></dc:creator><pubDate>Fri, 14 Oct 2016 20:57:56 GMT</pubDate></item><item><title><![CDATA[Reply to Minimale Geld stückelung on Fri, 14 Oct 2016 21:48:38 GMT]]></title><description><![CDATA[<p>HarteWare schrieb:</p>
<blockquote>
<p>... man muss nich immer die Länge mitgeben</p>
</blockquote>
<p>Was hältst Du denn dann hiervon:</p>
<pre><code>...
    unsigned euroArten[N_EURO_ARTEN] = {
        500, 200, 100, 50, 20, 10, 5, 2, 1
        , 0 //ungültiger Wert als Grenze
    };
...

for(int i = 0; euroArten[i]; ++i)
{
   ...
}

...
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2511607</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2511607</guid><dc:creator><![CDATA[Belli]]></dc:creator><pubDate>Fri, 14 Oct 2016 21:48:38 GMT</pubDate></item><item><title><![CDATA[Reply to Minimale Geld stückelung on Fri, 14 Oct 2016 22:20:21 GMT]]></title><description><![CDATA[<p>Belli schrieb:</p>
<blockquote>
<p>Was hältst Du denn dann hiervon:</p>
</blockquote>
<p>Inband-Signaling ist hässlich.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2511611</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2511611</guid><dc:creator><![CDATA[dachschaden]]></dc:creator><pubDate>Fri, 14 Oct 2016 22:20:21 GMT</pubDate></item><item><title><![CDATA[Reply to Minimale Geld stückelung on Sat, 15 Oct 2016 01:26:42 GMT]]></title><description><![CDATA[<p>HarteWare schrieb:</p>
<blockquote>
<p>man muss nich immer die Länge mitgeben</p>
</blockquote>
<p>stimmt, dafür gibts die neue for-Syntax. Und zwei Schleifen sind ja eigentlich eine zuviel</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;

using namespace std;

int main()
{
    unsigned long long euro = 0;
    unsigned long long cent = 0;

    cout &lt;&lt; &quot;Euro Anteil: &quot;;
    cin &gt;&gt; euro;

    cout &lt;&lt; &quot;Cent Anteil: &quot;;
    cin &gt;&gt; cent;

    cent += 100 * euro;

    auto separator = &quot;&quot;;
    for ( auto i : { 50000, 20000, 10000, 5000, 2000, 1000, 500, 200, 100, 50, 20, 10, 5, 2, 1 } )
    {
        if ( cent &gt;= i )
        {
            cout &lt;&lt; separator &lt;&lt; cent / i &lt;&lt; &quot; x &quot; &lt;&lt; ( i &gt;= 100 ? i / 100 : i ) &lt;&lt; ( i &gt;= 100 ? &quot; EURO&quot; : &quot; CENT&quot; );
            cent %= i;
            separator = &quot;, &quot;;
        }
    }

    cout &lt;&lt; &quot;.\n&quot;;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2511623</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2511623</guid><dc:creator><![CDATA[camper]]></dc:creator><pubDate>Sat, 15 Oct 2016 01:26:42 GMT</pubDate></item><item><title><![CDATA[Reply to Minimale Geld stückelung on Sat, 15 Oct 2016 11:36:40 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/22666">@Belli</a>,</p>
<p>ich glaube man kann sich im Allgemeinen nicht darauf verlassen, dass 0 in einem Array kein gültiger Wert ist.</p>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/6642">@camper</a></p>
<p>find ich eigentlich ne coole Idee, gleich alles in Cent zu machen. Es wird auch das ursprüngliche Ausgabe-Format beachtet.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2511654</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2511654</guid><dc:creator><![CDATA[HarteWare]]></dc:creator><pubDate>Sat, 15 Oct 2016 11:36:40 GMT</pubDate></item><item><title><![CDATA[Reply to Minimale Geld stückelung on Sat, 15 Oct 2016 13:20:58 GMT]]></title><description><![CDATA[<p>Man muss sich nicht immer <em>im Allgemeinen</em> auf Dinge verlassen können, oft reicht auch <em>im Speziellen</em>.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2511658</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2511658</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Sat, 15 Oct 2016 13:20:58 GMT</pubDate></item><item><title><![CDATA[Reply to Minimale Geld stückelung on Mon, 17 Oct 2016 05:25:53 GMT]]></title><description><![CDATA[<p>HarteWare schrieb:</p>
<blockquote>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/22666">@Belli</a>,</p>
<p>ich glaube man kann sich im Allgemeinen nicht darauf verlassen, dass 0 in einem Array kein gültiger Wert ist.</p>
</blockquote>
<p>Selbstverständlich nicht! Das war ein Vorschlag für das konkrete Problem.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2511798</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2511798</guid><dc:creator><![CDATA[Belli]]></dc:creator><pubDate>Mon, 17 Oct 2016 05:25:53 GMT</pubDate></item></channel></rss>