<?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[C++ Programm gesucht]]></title><description><![CDATA[<p>hallo alle miteiander!<br />
ich soll einen algorrythmus zur berechnung der dezimalstellen der Euler`schen zahl e in windows32 konsolenanwendung und C++ Quellcodedatei schreiben!!1<br />
hab aber keine ahnung wie das gehen soll!</p>
<p>Angabe:<br />
A0=1<br />
A1=2<br />
B0=0<br />
B1=1</p>
<p>i=1,2,3,...</p>
<p>(A(i)+B(i))/(A(i)-B(i))</p>
<p>A(i+1)=(4i+2)*A(i)+A(i-1)</p>
<p>B(i+1)=(4i+2)*B(i)+B(i-1)</p>
<p>Bitte kann mir jemand dabei helfen??<br />
mfg chris</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/162000/c-programm-gesucht</link><generator>RSS for Node</generator><lastBuildDate>Sat, 12 Sep 2026 02:27:20 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/162000.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 13 Oct 2006 13:17:35 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to C++ Programm gesucht on Fri, 13 Oct 2006 13:17:35 GMT]]></title><description><![CDATA[<p>hallo alle miteiander!<br />
ich soll einen algorrythmus zur berechnung der dezimalstellen der Euler`schen zahl e in windows32 konsolenanwendung und C++ Quellcodedatei schreiben!!1<br />
hab aber keine ahnung wie das gehen soll!</p>
<p>Angabe:<br />
A0=1<br />
A1=2<br />
B0=0<br />
B1=1</p>
<p>i=1,2,3,...</p>
<p>(A(i)+B(i))/(A(i)-B(i))</p>
<p>A(i+1)=(4i+2)*A(i)+A(i-1)</p>
<p>B(i+1)=(4i+2)*B(i)+B(i-1)</p>
<p>Bitte kann mir jemand dabei helfen??<br />
mfg chris</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1154096</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1154096</guid><dc:creator><![CDATA[xchrisx]]></dc:creator><pubDate>Fri, 13 Oct 2006 13:17:35 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Programm gesucht on Sat, 14 Oct 2006 06:16:03 GMT]]></title><description><![CDATA[<p>einseinself</p>
<p>Schulaufgabe? Kurs?<br />
Die Aufgabenstellung ist, da du die Formeln ja schon hast, SO einfach dass ich denke es wäre kein Gefallen an die Gemeinde der C++ Programmierer dir dabei noch weiter zu helfen.</p>
<p>Aber naja. Fang mal damit an:</p>
<pre><code class="language-cpp">int main(int argc, char** argv)
{
    double a_old = 1;
    double a = 2;
    double b_old = 0;
    double b = 1;
    // here is where you come in

    return 0;
}
</code></pre>
<p>Und eigentlich ist sogar das schon zuviel Hilfe <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1154436</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1154436</guid><dc:creator><![CDATA[Plotzenhotz]]></dc:creator><pubDate>Sat, 14 Oct 2006 06:16:03 GMT</pubDate></item></channel></rss>