<?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[Suche Funktion für x^y]]></title><description><![CDATA[<p>Hallo Leuts,<br />
ich brauche eine Funktion für x^y.<br />
Gibt es so eine?<br />
Hoffe schon,</p>
<p>TheExecut0r</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/133640/suche-funktion-für-x-y</link><generator>RSS for Node</generator><lastBuildDate>Fri, 28 Aug 2026 01:14:40 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/133640.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 19 Jan 2006 14:18:37 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Suche Funktion für x^y on Thu, 19 Jan 2006 14:18:37 GMT]]></title><description><![CDATA[<p>Hallo Leuts,<br />
ich brauche eine Funktion für x^y.<br />
Gibt es so eine?<br />
Hoffe schon,</p>
<p>TheExecut0r</p>
]]></description><link>https://www.c-plusplus.net/forum/post/970605</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/970605</guid><dc:creator><![CDATA[TheExecut0r]]></dc:creator><pubDate>Thu, 19 Jan 2006 14:18:37 GMT</pubDate></item><item><title><![CDATA[Reply to Suche Funktion für x^y on Thu, 19 Jan 2006 14:23:19 GMT]]></title><description><![CDATA[<p>pow() aus math</p>
]]></description><link>https://www.c-plusplus.net/forum/post/970607</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/970607</guid><dc:creator><![CDATA[xindon]]></dc:creator><pubDate>Thu, 19 Jan 2006 14:23:19 GMT</pubDate></item><item><title><![CDATA[Reply to Suche Funktion für x^y on Thu, 19 Jan 2006 14:23:50 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;cmath&gt;

int main(void)
{
    //x und y seien double-Werte
    double result = std::pow(x,y);
    return 0;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/970608</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/970608</guid><dc:creator><![CDATA[Phoemuex]]></dc:creator><pubDate>Thu, 19 Jan 2006 14:23:50 GMT</pubDate></item><item><title><![CDATA[Reply to Suche Funktion für x^y on Thu, 19 Jan 2006 15:15:53 GMT]]></title><description><![CDATA[<p>funktioniert das auch so?</p>
<pre><code class="language-cpp">Zahl1 = StrToFloat (Edit1-&gt;Text);
Zahl2 = StrToFloat (Edit2-&gt;Text);
float Ergebnis = pow(Zahl1,Zahl2);
Label1-&gt;Caption = FloatToStr (Ergebnis);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/970651</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/970651</guid><dc:creator><![CDATA[TheExecut0r]]></dc:creator><pubDate>Thu, 19 Jan 2006 15:15:53 GMT</pubDate></item><item><title><![CDATA[Reply to Suche Funktion für x^y on Thu, 19 Jan 2006 15:19:53 GMT]]></title><description><![CDATA[<p>habs gerade probiert, klappt! Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/970654</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/970654</guid><dc:creator><![CDATA[TheExecut0r]]></dc:creator><pubDate>Thu, 19 Jan 2006 15:19:53 GMT</pubDate></item></channel></rss>