<?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[int darstellen]]></title><description><![CDATA[<p>Hallo!</p>
<p>Kann man eine interger zahl = 0 auch als 00 darstellen? Brauch es für die Uhrzeit.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/179510/int-darstellen</link><generator>RSS for Node</generator><lastBuildDate>Mon, 21 Sep 2026 06:20:08 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/179510.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 22 Apr 2007 17:14:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to int darstellen on Sun, 22 Apr 2007 17:14:01 GMT]]></title><description><![CDATA[<p>Hallo!</p>
<p>Kann man eine interger zahl = 0 auch als 00 darstellen? Brauch es für die Uhrzeit.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1271282</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1271282</guid><dc:creator><![CDATA[dosunmu]]></dc:creator><pubDate>Sun, 22 Apr 2007 17:14:01 GMT</pubDate></item><item><title><![CDATA[Reply to int darstellen on Sun, 22 Apr 2007 17:16:00 GMT]]></title><description><![CDATA[<p>Bei der Ausgabe? Jo klar <a href="http://userpage.fu-berlin.de/~ram/pub/pub_jf47ht12Ht/c++_zahlenformatierung_de" rel="nofollow">http://userpage.fu-berlin.de/~ram/pub/pub_jf47ht12Ht/c++_zahlenformatierung_de</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1271284</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1271284</guid><dc:creator><![CDATA[rüdiger]]></dc:creator><pubDate>Sun, 22 Apr 2007 17:16:00 GMT</pubDate></item><item><title><![CDATA[Reply to int darstellen on Mon, 23 Apr 2007 03:34:17 GMT]]></title><description><![CDATA[<p>wen printf verwendest , dann so:</p>
<pre><code class="language-cpp">int i=0;
printf(&quot;Zahl: %2i&quot;, i);
</code></pre>
<p>Ausgabe &quot;Zahl: 00&quot;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1271448</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1271448</guid><dc:creator><![CDATA[BorisDieKlinge]]></dc:creator><pubDate>Mon, 23 Apr 2007 03:34:17 GMT</pubDate></item><item><title><![CDATA[Reply to int darstellen on Mon, 23 Apr 2007 06:03:50 GMT]]></title><description><![CDATA[<p>@Boris: Wir sind hier im C++ Board <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="😉"
    /> Und da sieht das so aus:</p>
<pre><code class="language-cpp">cout&lt;&lt;setw(2)/*Breite 2 Zeichen*/&lt;&lt;setfill('0')/*mit 0 auffüllen*/&lt;&lt;i;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1271460</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1271460</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Mon, 23 Apr 2007 06:03:50 GMT</pubDate></item></channel></rss>