<?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[eine zahl hoch x nehmen]]></title><description><![CDATA[<p>hallo.<br />
ich muss in einer combobox einen eintrag auswählen und den mit dem itemendex hoch nehemn.<br />
wie geht das genau?</p>
<pre><code class="language-cpp">int faktor =10E(ring3-&gt;ItemIndex);
</code></pre>
<p>das fuktioniert irgendwie nicht</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/110974/eine-zahl-hoch-x-nehmen</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Jul 2026 22:54:24 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/110974.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 26 May 2005 12:09:13 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to eine zahl hoch x nehmen on Thu, 26 May 2005 12:09:13 GMT]]></title><description><![CDATA[<p>hallo.<br />
ich muss in einer combobox einen eintrag auswählen und den mit dem itemendex hoch nehemn.<br />
wie geht das genau?</p>
<pre><code class="language-cpp">int faktor =10E(ring3-&gt;ItemIndex);
</code></pre>
<p>das fuktioniert irgendwie nicht</p>
]]></description><link>https://www.c-plusplus.net/forum/post/796566</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/796566</guid><dc:creator><![CDATA[masterfu]]></dc:creator><pubDate>Thu, 26 May 2005 12:09:13 GMT</pubDate></item><item><title><![CDATA[Reply to eine zahl hoch x nehmen on Thu, 26 May 2005 12:22:57 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">int faktor = StrToInt(ring3-&gt;Items-&gt;Item[ring3-&gt;ItemIndex])^ring3-&gt;ItemIndex;
</code></pre>
<p>Meinst du dass (ungetestet)?</p>
<p>Generell nimmst du eine Zahl x hoch y, indem du schreibst:<br />
x^y</p>
]]></description><link>https://www.c-plusplus.net/forum/post/796574</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/796574</guid><dc:creator><![CDATA[Reyx]]></dc:creator><pubDate>Thu, 26 May 2005 12:22:57 GMT</pubDate></item><item><title><![CDATA[Reply to eine zahl hoch x nehmen on Thu, 26 May 2005 12:19:56 GMT]]></title><description><![CDATA[<p>*EDIT* Zu spät und leicht verpeilt <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/796575</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/796575</guid><dc:creator><![CDATA[Windoof]]></dc:creator><pubDate>Thu, 26 May 2005 12:19:56 GMT</pubDate></item><item><title><![CDATA[Reply to eine zahl hoch x nehmen on Thu, 26 May 2005 12:30:22 GMT]]></title><description><![CDATA[<p>Reyx schrieb:</p>
<blockquote>
<p>Generell nimmst du eine Zahl x hoch y, indem du schreibst:<br />
x^y</p>
</blockquote>
<p><strong>FALSCH</strong></p>
<p>Borland Hilfe schrieb:</p>
<blockquote>
<p>^ Bitweises exklusives ODER; vergleicht paarweise je zwei korrespondierende Bits und setzt das entsprechende Bit im Ergebnis auf 1, wenn beide Bits unterschiedlich sind, andernfalls auf 0.</p>
</blockquote>
<p>Die Funktion &quot;Power&quot; dürfte Dein Problem lösen:</p>
<pre><code class="language-cpp">Extended __fastcall Power(Extended Base, Extended Exponent);
</code></pre>
<p><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/796588</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/796588</guid><dc:creator><![CDATA[Burkhi]]></dc:creator><pubDate>Thu, 26 May 2005 12:30:22 GMT</pubDate></item><item><title><![CDATA[Reply to eine zahl hoch x nehmen on Thu, 26 May 2005 12:24:27 GMT]]></title><description><![CDATA[<p>naja schrieb im builder x^y. danke für die wahnsinns hilfe.<br />
kann mir denn jemand wenigstens sagen, wie man den eintrag, der in einer combobox steht ausliest.<br />
z.b<br />
rot<br />
grün<br />
blau...?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/796589</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/796589</guid><dc:creator><![CDATA[masterfu]]></dc:creator><pubDate>Thu, 26 May 2005 12:24:27 GMT</pubDate></item><item><title><![CDATA[Reply to eine zahl hoch x nehmen on Thu, 26 May 2005 12:31:49 GMT]]></title><description><![CDATA[<p>ComboBox-&gt;Text liefert Dir das, was in der ComboBoxeingabezeile drinsteht.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/796598</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/796598</guid><dc:creator><![CDATA[Burkhi]]></dc:creator><pubDate>Thu, 26 May 2005 12:31:49 GMT</pubDate></item><item><title><![CDATA[Reply to eine zahl hoch x nehmen on Thu, 26 May 2005 12:43:35 GMT]]></title><description><![CDATA[<p>Burkhi schrieb:</p>
<blockquote>
<p>Reyx schrieb:</p>
<blockquote>
<p>Generell nimmst du eine Zahl x hoch y, indem du schreibst:<br />
x^y</p>
</blockquote>
<p><strong>FALSCH</strong></p>
</blockquote>
<p>Ahh... sorry, wie konnte mir das passieren!!! <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="😡"
    /><br />
Hast natürlich recht... ich war da mal wieder auf der PHP-Schiene <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/796608</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/796608</guid><dc:creator><![CDATA[Reyx]]></dc:creator><pubDate>Thu, 26 May 2005 12:43:35 GMT</pubDate></item><item><title><![CDATA[Reply to eine zahl hoch x nehmen on Thu, 26 May 2005 13:58:50 GMT]]></title><description><![CDATA[<p>Oder du nimmst ComboBox1-&gt;Items-&gt;Strings[ComboBox1-&gt;ItemIndex]; welches dir den gewählten Eintrag zurückliefert.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/796674</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/796674</guid><dc:creator><![CDATA[PuppetMaster2k]]></dc:creator><pubDate>Thu, 26 May 2005 13:58:50 GMT</pubDate></item><item><title><![CDATA[Reply to eine zahl hoch x nehmen on Fri, 27 May 2005 10:12:10 GMT]]></title><description><![CDATA[<p>Reyx schrieb:</p>
<blockquote>
<p>Burkhi schrieb:</p>
<blockquote>
<p>Reyx schrieb:</p>
<blockquote>
<p>Generell nimmst du eine Zahl x hoch y, indem du schreibst:<br />
x^y</p>
</blockquote>
<p><strong>FALSCH</strong></p>
</blockquote>
<p>Ahh... sorry, wie konnte mir das passieren!!! <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="😡"
    /><br />
Hast natürlich recht... ich war da mal wieder auf der PHP-Schiene <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>
</blockquote>
<p>In PHP ist <strong>^</strong> ein <strong><a href="http://www.php.net/manual/de/language.operators.bitwise.php" rel="nofollow">XOR</a></strong> <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/797130</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/797130</guid><dc:creator><![CDATA[Windoof]]></dc:creator><pubDate>Fri, 27 May 2005 10:12:10 GMT</pubDate></item><item><title><![CDATA[Reply to eine zahl hoch x nehmen on Fri, 27 May 2005 11:41:03 GMT]]></title><description><![CDATA[<p>Windoof schrieb:</p>
<blockquote>
<p>In PHP ist <strong>^</strong> ein <strong><a href="http://www.php.net/manual/de/language.operators.bitwise.php" rel="nofollow">XOR</a></strong> <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>
</blockquote>
<p>Find' ich komisch; Ich hatte damals definitiv einen Rechner in PHP geschrieben, der das berechnet hat!?<br />
Der mir also bei &quot;<span class="katex"><span class="katex-mathml"><math><semantics><mrow><mi>c</mi><mi>a</mi><mi>l</mi><mi>c</mi><mo>=</mo><msup><mn>3</mn><mn>3</mn></msup><mi mathvariant="normal">&quot;</mi><mi>a</mi><mi>l</mi><mi>s</mi><mi>E</mi><mi>r</mi><mi>g</mi><mi>e</mi><mi>b</mi><mi>n</mi><mi>i</mi><mi>s</mi><mi mathvariant="normal">&quot;</mi></mrow><annotation encoding="application/x-tex">calc = 3^3&quot; als Ergebnis &quot;</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="strut" style="height:0.8141079999999999em;"></span><span class="strut bottom" style="height:1.008548em;vertical-align:-0.19444em;"></span><span class="base textstyle uncramped"><span class="mord mathit">c</span><span class="mord mathit">a</span><span class="mord mathit" style="margin-right:0.01968em;">l</span><span class="mord mathit">c</span><span class="mrel">=</span><span class="mord"><span class="mord mathrm">3</span><span class="vlist"><span style="top:-0.363em;margin-right:0.05em;"><span class="fontsize-ensurer reset-size5 size5"><span style="font-size:0em;">​</span></span><span class="reset-textstyle scriptstyle uncramped"><span class="mord mathrm">3</span></span></span><span class="baseline-fix"><span class="fontsize-ensurer reset-size5 size5"><span style="font-size:0em;">​</span></span>​</span></span></span><span class="mord mathrm">&quot;</span><span class="mord mathit">a</span><span class="mord mathit" style="margin-right:0.01968em;">l</span><span class="mord mathit">s</span><span class="mord mathit" style="margin-right:0.05764em;">E</span><span class="mord mathit" style="margin-right:0.02778em;">r</span><span class="mord mathit" style="margin-right:0.03588em;">g</span><span class="mord mathit">e</span><span class="mord mathit">b</span><span class="mord mathit">n</span><span class="mord mathit">i</span><span class="mord mathit">s</span><span class="mord mathrm">&quot;</span></span></span></span>calc == 27&quot; ausgespuckt hat...<br />
Da war ich durch Zufall mal drauf gestoßen (dass es funktioniert), also dachte ich, dass währe normal so?<br />
Naja, offensichtlich ja nicht... <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/797209</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/797209</guid><dc:creator><![CDATA[Reyx]]></dc:creator><pubDate>Fri, 27 May 2005 11:41:03 GMT</pubDate></item><item><title><![CDATA[Reply to eine zahl hoch x nehmen on Sun, 29 May 2005 09:38:13 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>#include &lt;math.h&gt;<br />
#include &lt;windows.h&gt;<br />
#include &lt;mmsystem.h&gt;</p>
<p>double Ergebnishochzahl, n;</p>
<p>n = ComboBox1-&gt;ItemIndex;</p>
<p>float x = ComboBox1-&gt;Items-&gt;Strings[ComboBox1-&gt;ItemIndex, y = n;</p>
<p>Ergebnishochzahl = (&quot;%If raised to %If is %If\n&quot;, x, y, pow(x, n));</p>
<p>Gruß<br />
Tommops</p>
]]></description><link>https://www.c-plusplus.net/forum/post/798141</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/798141</guid><dc:creator><![CDATA[Tommops]]></dc:creator><pubDate>Sun, 29 May 2005 09:38:13 GMT</pubDate></item></channel></rss>