<?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[Ganz einfache frage ^^]]></title><description><![CDATA[<p>also ehrm is so das ich mirn winziges programm geschrieben hab und es mit zu wenig komma stellen rechnet also es macht nur x,x und nicht x,xx ( x,xxx wäre ideal )</p>
<p>könnt ihr mir sagen ob ich da ne bestimmte variabel nehmen muss?<br />
oder was ich sonst tun muss</p>
<p>3DI7: benutze int variablen</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/132546/ganz-einfache-frage</link><generator>RSS for Node</generator><lastBuildDate>Thu, 27 Aug 2026 16:09:37 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/132546.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 11 Jan 2006 17:00:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Wed, 11 Jan 2006 17:00:45 GMT]]></title><description><![CDATA[<p>also ehrm is so das ich mirn winziges programm geschrieben hab und es mit zu wenig komma stellen rechnet also es macht nur x,x und nicht x,xx ( x,xxx wäre ideal )</p>
<p>könnt ihr mir sagen ob ich da ne bestimmte variabel nehmen muss?<br />
oder was ich sonst tun muss</p>
<p>3DI7: benutze int variablen</p>
]]></description><link>https://www.c-plusplus.net/forum/post/963829</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/963829</guid><dc:creator><![CDATA[0_0]]></dc:creator><pubDate>Wed, 11 Jan 2006 17:00:45 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Wed, 11 Jan 2006 17:11:11 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>float sollte deinen Ansprüchen genügen, hat auch ein bisserl mehr als 3 Stellen hinter'm Komma und geht von 3,4E-38 bis 3,4E+38. Wenn du noch mehr brauchst/willst, nimm double.</p>
<p>Die Ausgabe kannst du mit <a href="http://www.cppreference.com/io_flags.html#format_flags" rel="nofollow">diesen Flags (setprecision um genau zu sein)</a> beeinflussen.</p>
<p>int ist im Übrigen nur eine Ganzzahl, nix mit Komma.</p>
<p>Mfg</p>
<p>GPC</p>
]]></description><link>https://www.c-plusplus.net/forum/post/963835</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/963835</guid><dc:creator><![CDATA[GPC]]></dc:creator><pubDate>Wed, 11 Jan 2006 17:11:11 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Wed, 11 Jan 2006 17:14:22 GMT]]></title><description><![CDATA[<p>Hallo,<br />
Mit Hilfe der I/O-Manipulatoren kannst du das Format der Ein/Ausgabe-Streams verändern.</p>
<p>Um Beispielsweise Zahlen mit 3 Kommastellen auszugeben, schreibst du:</p>
<pre><code class="language-cpp">#include &lt;iomanip&gt; // wird benötigt für setprecision()
#include &lt;iostream&gt;

int main()
{
   double x = 9.990;
   std::cout &lt;&lt; std::fixed &lt;&lt; std::setprecision(3) &lt;&lt; x &lt;&lt; std::endl;
}
</code></pre>
<p>Siehe dazu z.B. auch <a href="http://www.cppreference.com/io_flags.html#format_flags" rel="nofollow">hier</a>.</p>
<p>/edit:<br />
langsammmmm... (muss mich erstmal wieder einschreiben :))</p>
<p>Gruß Caipi</p>
]]></description><link>https://www.c-plusplus.net/forum/post/963837</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/963837</guid><dc:creator><![CDATA[Caipi]]></dc:creator><pubDate>Wed, 11 Jan 2006 17:14:22 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Wed, 11 Jan 2006 17:19:44 GMT]]></title><description><![CDATA[<p>0_0 schrieb:</p>
<blockquote>
<p>3DI7: benutze int variablen</p>
</blockquote>
<p>leet kiddie <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_down"
      title=":-1:"
      alt="👎"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/963842</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/963842</guid><dc:creator><![CDATA[attaa]]></dc:creator><pubDate>Wed, 11 Jan 2006 17:19:44 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Wed, 11 Jan 2006 17:21:10 GMT]]></title><description><![CDATA[<blockquote>
<p>3DI7</p>
</blockquote>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f621.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--pouting_face"
      title=":rage:"
      alt="😡"
    /> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_down"
      title=":-1:"
      alt="👎"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/963847</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/963847</guid><dc:creator><![CDATA[edit-detector]]></dc:creator><pubDate>Wed, 11 Jan 2006 17:21:10 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Wed, 11 Jan 2006 18:13:09 GMT]]></title><description><![CDATA[<p>ich danke euch für die nette hilfe <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="🙂"
    /> werd mich dann mal dran machen es zu verbessern ( ich sag euch wenns geklappt hat ^^ )</p>
<p>EDIT:</p>
<pre><code>#include &lt;iostream.h&gt;
#include &lt;iomanip&gt;

int main()
{
	double Kapital1;
	double Kapital2;
	int Zinssatz1;
	int Zinssatz2;
	int Tage;
	Tage = 1;
cout &lt;&lt;&quot;Kapital 1&quot;&lt;&lt;endl;
cin &gt;&gt; Kapital1;
cout &lt;&lt;&quot;Kapital2&quot;&lt;&lt;endl;
cin &gt;&gt; Kapital2;
cout &lt;&lt;&quot;Zinssatz1&quot;&lt;&lt;endl;
cin &gt;&gt; Zinssatz1;
cout &lt;&lt;&quot;Zinssatz2&quot;&lt;&lt;endl;
cin &gt;&gt; Zinssatz2;

loop:

cout &lt;&lt;&quot;Tage : &quot; &lt;&lt; Tage
	 &lt;&lt;&quot; Kapital 1 : &quot;&lt;&lt;Kapital1
	 &lt;&lt;&quot; Kapital 2 : &quot;&lt;&lt;Kapital2&lt;&lt;endl;
Kapital1 = Kapital1+(Kapital1 * Zinssatz1 * 1) / ( 100 * 360 );
Kapital2 = Kapital2+(Kapital2 * Zinssatz2 * 1) / ( 100 * 360 );
++Tage;
if (Tage &gt; 6000)goto Error;
if (Kapital1 == Kapital2)
{
cout &lt;&lt; &quot;Gleichstand bei : &quot;&lt;&lt;Tage&lt;&lt;endl;
cout &lt;&lt; &quot;Kapital 1 : &quot;;
std::cout &lt;&lt; std::fixed &lt;&lt; std::setprecision(3) &lt;&lt; Kapital1 &lt;&lt; std::endl;
cout &lt;&lt; &quot;Kapital 2 : &quot;;
std::cout &lt;&lt; std::fixed &lt;&lt; std::setprecision(3) &lt;&lt; Kapital2 &lt;&lt; std::endl;
}                               // Nach unten Bewegt
else
{
	goto loop;
}
return 0;

Error:
cout &lt;&lt; &quot;Error&quot;&lt;&lt;endl;
cout &lt;&lt; Tage &lt;&lt;&quot; : Tage&quot;&lt;&lt;endl;
return 0;
}
</code></pre>
<p>also mein problem war ja mit dem komma stellen ^^&quot; jezt hab ich float und double ausprobiert und mein ergebniss war nur 1 komma stelle.</p>
<p>jezt probier ichs mit diesen kompliziertem satz und kapier net wie ich den error fixe ^^</p>
<p>is eigentlich sinnlos das programm ich weiß aber meine werte die es ausgeben soll sind folgende</p>
<p>Eingaben:</p>
<p>Kapital 1: 8000<br />
Kapital 2: 7000<br />
Zinssatz 1: 6%<br />
Zinssatz 2: 8%</p>
<p>Ausgaben:</p>
<p>Tage : 4500</p>
<p>derzeitige falsche ausgabe : 3001</p>
<p>verzeit mir goto aber ich liebe es ^^ <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>
<p>achja das sollte ich noch dazuschreiben</p>
<p>Compiler : Microsoft Visual C++</p>
<p>Error :<br />
--------------------Configuration: Cpp1 - Win32 Debug--------------------<br />
Compiling...<br />
Cpp1.cpp<br />
C:\Dokumente und Einstellungen\Littletiger\Desktop\winamp\neu\Cpp1.cpp(35) : error C2039: 'cout' : is not a member of 'std'<br />
C:\Dokumente und Einstellungen\Littletiger\Desktop\winamp\neu\Cpp1.cpp(35) : error C2679: binary '&lt;&lt;' : no operator defined which takes a right-hand operand of type 'struct std::_Smanip&lt;int&gt;' (or there is no acceptable conversion)<br />
C:\Dokumente und Einstellungen\Littletiger\Desktop\winamp\neu\Cpp1.cpp(37) : error C2039: 'cout' : is not a member of 'std'<br />
C:\Dokumente und Einstellungen\Littletiger\Desktop\winamp\neu\Cpp1.cpp(37) : error C2679: binary '&lt;&lt;' : no operator defined which takes a right-hand operand of type 'struct std::_Smanip&lt;int&gt;' (or there is no acceptable conversion)<br />
Error executing cl.exe.</p>
<p>Cpp1.exe - 4 error(s), 0 warning(s)</p>
<p>Ahhh hab gerade kapiert das ich die zeile bei der ausgabe platzieren soll *neu versuch*</p>
]]></description><link>https://www.c-plusplus.net/forum/post/963875</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/963875</guid><dc:creator><![CDATA[0_0]]></dc:creator><pubDate>Wed, 11 Jan 2006 18:13:09 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Wed, 11 Jan 2006 18:22:44 GMT]]></title><description><![CDATA[<p>Du solltest dich entscheiden ob du alte header &lt;iostream.h&gt;( dann ohne std:: ) oder neue header &lt;iostream&gt; verwendest. Empfehle die neuen <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="😉"
    /><br />
Kurt</p>
]]></description><link>https://www.c-plusplus.net/forum/post/963932</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/963932</guid><dc:creator><![CDATA[ZuK]]></dc:creator><pubDate>Wed, 11 Jan 2006 18:22:44 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Wed, 11 Jan 2006 18:29:19 GMT]]></title><description><![CDATA[<p>&lt;iostream&gt; kennt er net, brauch ich da nen update?</p>
<p>( hab visual c++ 6 )</p>
]]></description><link>https://www.c-plusplus.net/forum/post/963938</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/963938</guid><dc:creator><![CDATA[0_0]]></dc:creator><pubDate>Wed, 11 Jan 2006 18:29:19 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Wed, 11 Jan 2006 18:36:19 GMT]]></title><description><![CDATA[<p>0_0 schrieb:</p>
<blockquote>
<p>&lt;iostream&gt; kennt er net, brauch ich da nen update?</p>
<p>( hab visual c++ 6 )</p>
</blockquote>
<p>Glaub da gibt's ein servicepack. Arbeite eigentlich nicht mit den MS zeug. Kann mich erinnern dass es bei mir irgendwann auf einmal funktioniert hat. Habe damals eigentlich nur ein servicepack für VB installiert.<br />
Kurt</p>
]]></description><link>https://www.c-plusplus.net/forum/post/963948</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/963948</guid><dc:creator><![CDATA[ZuK]]></dc:creator><pubDate>Wed, 11 Jan 2006 18:36:19 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Wed, 11 Jan 2006 19:23:35 GMT]]></title><description><![CDATA[<p>humm, vb .h datein soweit wie ich konnte drauf, will er immernoch net</p>
<p>könnte mir jemand die datei des neuen headers hochladen ? oder per email?</p>
<p>hab gerade die idee auf der cd meines lehrbuches zu gugen. melde mich dann</p>
]]></description><link>https://www.c-plusplus.net/forum/post/963967</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/963967</guid><dc:creator><![CDATA[0_0]]></dc:creator><pubDate>Wed, 11 Jan 2006 19:23:35 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Wed, 11 Jan 2006 19:11:49 GMT]]></title><description><![CDATA[<p>0_0 schrieb:</p>
<blockquote>
<p>humm, vb .h datein soweit wie ich konnte drauf, will er immernoch net</p>
</blockquote>
<p>Wollte mit meinem vorigen posting nicht sagen dass das irgendwas mit VB zu tun hat. Habe das Servicepack für VC wahrscheinlich unbewusst mitinstalliert.<br />
Kurt</p>
]]></description><link>https://www.c-plusplus.net/forum/post/963970</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/963970</guid><dc:creator><![CDATA[ZuK]]></dc:creator><pubDate>Wed, 11 Jan 2006 19:11:49 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Wed, 11 Jan 2006 21:53:50 GMT]]></title><description><![CDATA[<p>&lt;_&gt; ich kriegs net hin hab</p>
<p>#include &lt;iostream&gt;</p>
<p>aber geht net ( erkennt er immernoch net )</p>
<p>achja er soll ja auch mit den 3 kommastellen rechnen und ausgaben</p>
<pre><code class="language-cpp">#include &lt;iomanip&gt; // wird benötigt für setprecision()
#include &lt;iostream&gt;

int main()
{
	double Kapital1;
	double Kapital2;
	int Zinssatz1;
	int Zinssatz2;
	int Tage;
	Tage = 1;
cout &lt;&lt;&quot;Kapital 1&quot;&lt;&lt;endl;
cin &gt;&gt; Kapital1;
cout &lt;&lt;&quot;Kapital2&quot;&lt;&lt;endl;
cin &gt;&gt; Kapital2;
cout &lt;&lt;&quot;Zinssatz1&quot;&lt;&lt;endl;
cin &gt;&gt; Zinssatz1;
cout &lt;&lt;&quot;Zinssatz2&quot;&lt;&lt;endl;
cin &gt;&gt; Zinssatz2;

loop:

cout &lt;&lt;&quot;Tage : &quot; &lt;&lt; Tage
	 &lt;&lt;&quot; Kapital 1 : &quot;&lt;&lt;Kapital1
	 &lt;&lt;&quot; Kapital 2 : &quot;&lt;&lt;Kapital2&lt;&lt;endl;
Kapital1 = Kapital1+(Kapital1 * Zinssatz1 * 1) / ( 100 * 360 );
Kapital2 = Kapital2+(Kapital2 * Zinssatz2 * 1) / ( 100 * 360 );
++Tage;
if (Tage &gt; 6000)goto Error;
if (Kapital1 == Kapital2)
{
cout &lt;&lt; &quot;Gleichstand bei : &quot;&lt;&lt;Tage&lt;&lt;endl;
cout &lt;&lt; &quot;Kapital 1 : &quot;&lt;&lt;Kapital1&lt;&lt;endl;
std::cout &lt;&lt; std::fixed &lt;&lt; std::setprecision(3) &lt;&lt; Kapital1 &lt;&lt; std::endl;
cout &lt;&lt; &quot;Kapital 2 : &quot;&lt;&lt;Kapital2&lt;&lt;endl;
std::cout &lt;&lt; std::fixed &lt;&lt; std::setprecision(3) &lt;&lt; Kapital2 &lt;&lt; std::endl;
}
else
{
	goto loop;
}
return 0;

Error:
cout &lt;&lt; &quot;Error&quot;&lt;&lt;endl;
cout &lt;&lt; Tage &lt;&lt;&quot; : Tage&quot;&lt;&lt;endl;
return 0;
}
</code></pre>
<pre><code class="language-cpp">--------------------Configuration: Cpp1 - Win32 Debug--------------------
Compiling...
Cpp1.cpp
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(12) : error C2065: 'cout' : undeclared identifier
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(12) : error C2297: '&lt;&lt;' : illegal, right operand has type 'char [10]'
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(12) : error C2065: 'endl' : undeclared identifier
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(13) : error C2065: 'cin' : undeclared identifier
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(13) : error C2296: '&gt;&gt;' : illegal, left operand has type 'double'
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(13) : error C2297: '&gt;&gt;' : illegal, right operand has type 'double'
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(14) : error C2297: '&lt;&lt;' : illegal, right operand has type 'char [9]'
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(15) : error C2296: '&gt;&gt;' : illegal, left operand has type 'double'
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(15) : error C2297: '&gt;&gt;' : illegal, right operand has type 'double'
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(16) : error C2297: '&lt;&lt;' : illegal, right operand has type 'char [10]'
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(17) : warning C4552: '&gt;&gt;' : operator has no effect; expected operator with side-effect
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(18) : error C2297: '&lt;&lt;' : illegal, right operand has type 'char [10]'
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(19) : warning C4552: '&gt;&gt;' : operator has no effect; expected operator with side-effect
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(23) : error C2297: '&lt;&lt;' : illegal, right operand has type 'char [8]'
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(32) : error C2297: '&lt;&lt;' : illegal, right operand has type 'char [19]'
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(33) : error C2297: '&lt;&lt;' : illegal, right operand has type 'char [13]'
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(35) : error C2297: '&lt;&lt;' : illegal, right operand has type 'char [13]'
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(45) : error C2297: '&lt;&lt;' : illegal, right operand has type 'char [6]'
c:\dokumente und einstellungen\littletiger\desktop\winamp\neu\cpp1.cpp(46) : error C2297: '&lt;&lt;' : illegal, right operand has type 'char [8]'
Error executing cl.exe.

Cpp1.exe - 17 error(s), 2 warning(s)
</code></pre>
<p>service pack 6 druff</p>
]]></description><link>https://www.c-plusplus.net/forum/post/963984</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/963984</guid><dc:creator><![CDATA[0_0]]></dc:creator><pubDate>Wed, 11 Jan 2006 21:53:50 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Wed, 11 Jan 2006 21:51:54 GMT]]></title><description><![CDATA[<p>gut ich besorge mir jezt borlander c++ builder, windows hat wie immer versagt</p>
]]></description><link>https://www.c-plusplus.net/forum/post/964102</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/964102</guid><dc:creator><![CDATA[O_O]]></dc:creator><pubDate>Wed, 11 Jan 2006 21:51:54 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Wed, 11 Jan 2006 22:03:09 GMT]]></title><description><![CDATA[<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f62e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_open_mouth"
      title="O_O"
      alt="😮"
    /> schrieb:</p>
<blockquote>
<p>gut ich besorge mir jezt borlander c++ builder, windows hat wie immer versagt</p>
</blockquote>
<p>Net gleich aufgeben. Jetzt passt ja alles. Fehlt nur mehr</p>
<pre><code class="language-cpp">using namespace std;
</code></pre>
<p>Kurt</p>
]]></description><link>https://www.c-plusplus.net/forum/post/964109</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/964109</guid><dc:creator><![CDATA[ZuK]]></dc:creator><pubDate>Wed, 11 Jan 2006 22:03:09 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Thu, 12 Jan 2006 16:18:37 GMT]]></title><description><![CDATA[<p>@O_O<br />
Ich hoffe mal, du meinst das mit den gotos nicht ernst...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/964743</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/964743</guid><dc:creator><![CDATA[michba]]></dc:creator><pubDate>Thu, 12 Jan 2006 16:18:37 GMT</pubDate></item><item><title><![CDATA[Reply to Ganz einfache frage ^^ on Thu, 12 Jan 2006 16:36:25 GMT]]></title><description><![CDATA[<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f62e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_open_mouth"
      title="O_O"
      alt="😮"
    /> schrieb:</p>
<blockquote>
<p>gut ich besorge mir jezt borlander c++ builder, windows hat wie immer versagt</p>
</blockquote>
<p>Als Anfänger unter Window kann ich dir MinGW empfehlen und die IDE Dev-C++. Hier gibt's ne Liste von kostenlosen Compilern:</p>
<p><a href="http://www.c-plusplus.net/forum/viewtopic.php?t=41476" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic.php?t=41476</a></p>
<p>mfg.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/964767</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/964767</guid><dc:creator><![CDATA[joomoo]]></dc:creator><pubDate>Thu, 12 Jan 2006 16:36:25 GMT</pubDate></item></channel></rss>