<?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[Doubles im Expotentialschreibweise darstellen]]></title><description><![CDATA[<p>Hallo, gibt es in der CString-Format Anweisung auch ein Flag um Gleitkommazahlen in Expotentialschreibweise darzustellen?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/182915/doubles-im-expotentialschreibweise-darstellen</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Apr 2026 05:37:32 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/182915.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 30 May 2007 15:02:59 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Doubles im Expotentialschreibweise darstellen on Wed, 30 May 2007 15:02:59 GMT]]></title><description><![CDATA[<p>Hallo, gibt es in der CString-Format Anweisung auch ein Flag um Gleitkommazahlen in Expotentialschreibweise darzustellen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1295307</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1295307</guid><dc:creator><![CDATA[AndreasTr]]></dc:creator><pubDate>Wed, 30 May 2007 15:02:59 GMT</pubDate></item><item><title><![CDATA[Reply to Doubles im Expotentialschreibweise darstellen on Wed, 30 May 2007 18:28:20 GMT]]></title><description><![CDATA[<p>guggst du in der MSDN unter CString, das führt zu CStringT::Format, das leitet weiter zu &quot;printf Type Field Characters&quot; . Dort steht u.a. folgendes:</p>
<blockquote>
<p>e double - Signed value having the form [ – ]d.dddd e [sign]dd[d] where d is a single decimal digit, dddd is one or more decimal digits, dd[d] is two or three decimal digits depending on the output format and size of the exponent, and sign is + or –.</p>
</blockquote>
<p>also:</p>
<pre><code class="language-cpp">CString test;
float d = 1.2;
test.Format(_T(&quot;%e&quot;),d);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1295466</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1295466</guid><dc:creator><![CDATA[Pellaeon]]></dc:creator><pubDate>Wed, 30 May 2007 18:28:20 GMT</pubDate></item></channel></rss>