<?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[Fakultät berechnen]]></title><description><![CDATA[<p>Hallo,<br />
wie könnte ich denn ein programm gestalten, das die fakultät<br />
bestimmt....</p>
<p>es wird eine zahl eingegeben, von der dann die fakultät berechnet<br />
und ausgegeben wird...</p>
<p>DANKE</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/108680/fakultät-berechnen</link><generator>RSS for Node</generator><lastBuildDate>Tue, 30 Jun 2026 06:39:31 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/108680.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 02 May 2005 09:51:18 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Fakultät berechnen on Mon, 02 May 2005 09:51:18 GMT]]></title><description><![CDATA[<p>Hallo,<br />
wie könnte ich denn ein programm gestalten, das die fakultät<br />
bestimmt....</p>
<p>es wird eine zahl eingegeben, von der dann die fakultät berechnet<br />
und ausgegeben wird...</p>
<p>DANKE</p>
]]></description><link>https://www.c-plusplus.net/forum/post/779987</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/779987</guid><dc:creator><![CDATA[no_member]]></dc:creator><pubDate>Mon, 02 May 2005 09:51:18 GMT</pubDate></item><item><title><![CDATA[Reply to Fakultät berechnen on Mon, 02 May 2005 10:19:19 GMT]]></title><description><![CDATA[<p>Wie waer's mit ner einfachen Schleife?</p>
<pre><code>int i=0;
int zahl=7; //deine Eingabe
long out=1; //die Ausgabe

for(i=0; i&lt;=zahl; zahl++)
{
    out=out*zahl-i;
}
</code></pre>
<p>Das mal so auf die Schnelle.</p>
<p>der Guenther.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/780005</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/780005</guid><dc:creator><![CDATA[Guenther]]></dc:creator><pubDate>Mon, 02 May 2005 10:19:19 GMT</pubDate></item><item><title><![CDATA[Reply to Fakultät berechnen on Mon, 02 May 2005 12:26:39 GMT]]></title><description><![CDATA[<p>Geht's dir um den Algorithmus oder um die GUI-Realisierung mit der WinAPI?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/780113</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/780113</guid><dc:creator><![CDATA[Christoph]]></dc:creator><pubDate>Mon, 02 May 2005 12:26:39 GMT</pubDate></item><item><title><![CDATA[Reply to Fakultät berechnen on Mon, 02 May 2005 12:32:32 GMT]]></title><description><![CDATA[<p>Mhhh... hier <a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-108681.html" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic-var-t-is-108681.html</a> scheints weiterzugehen...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/780119</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/780119</guid><dc:creator><![CDATA[Beowulf]]></dc:creator><pubDate>Mon, 02 May 2005 12:32:32 GMT</pubDate></item></channel></rss>