<?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[variabeln umwandeln]]></title><description><![CDATA[<p>ich habe ein problem das hier unten auch im code noch näher beschrieben ist</p>
<p>schonmal danke für die Hilfe</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;

using namespace std;

int main (void)

{
    cout &lt;&lt;&quot;bitte geben sie ihren vornamen ein&quot;;
    char s;
    cin &gt;&gt; s;
    char v;
    cin &gt;&gt; v;
    char e;
    cin &gt;&gt; e;
    char n;
    cin &gt;&gt; n;
    int s = t;  // am anfang dieser zeile liegt mein problem
    int v = i;  // ich weiss nicht was hinkommen soll
    int e = m;  // den namen sven schreiben und dan meinen namen &quot;timo&quot; ausgeben
    int n = o;
    cout &lt;&lt;s&lt;&lt;v&lt;&lt;e&lt;&lt;n;
    system (&quot;pause&quot;);
    return 0;
}
</code></pre>
<p>mfg PCfreak</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/122353/variabeln-umwandeln</link><generator>RSS for Node</generator><lastBuildDate>Sun, 23 Aug 2026 01:41:40 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/122353.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 05 Oct 2005 06:33:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to variabeln umwandeln on Wed, 05 Oct 2005 06:33:01 GMT]]></title><description><![CDATA[<p>ich habe ein problem das hier unten auch im code noch näher beschrieben ist</p>
<p>schonmal danke für die Hilfe</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;

using namespace std;

int main (void)

{
    cout &lt;&lt;&quot;bitte geben sie ihren vornamen ein&quot;;
    char s;
    cin &gt;&gt; s;
    char v;
    cin &gt;&gt; v;
    char e;
    cin &gt;&gt; e;
    char n;
    cin &gt;&gt; n;
    int s = t;  // am anfang dieser zeile liegt mein problem
    int v = i;  // ich weiss nicht was hinkommen soll
    int e = m;  // den namen sven schreiben und dan meinen namen &quot;timo&quot; ausgeben
    int n = o;
    cout &lt;&lt;s&lt;&lt;v&lt;&lt;e&lt;&lt;n;
    system (&quot;pause&quot;);
    return 0;
}
</code></pre>
<p>mfg PCfreak</p>
]]></description><link>https://www.c-plusplus.net/forum/post/885318</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/885318</guid><dc:creator><![CDATA[PCfreak]]></dc:creator><pubDate>Wed, 05 Oct 2005 06:33:01 GMT</pubDate></item><item><title><![CDATA[Reply to variabeln umwandeln on Wed, 05 Oct 2005 06:35:41 GMT]]></title><description><![CDATA[<p>was genau willst du machen?</p>
<pre><code class="language-cpp">string vorname;
cin&gt;&gt;vorname;  //namen eingeben
cout&lt;&lt;vorname; //namen ausgeben
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/885319</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/885319</guid><dc:creator><![CDATA[ser1al]]></dc:creator><pubDate>Wed, 05 Oct 2005 06:35:41 GMT</pubDate></item><item><title><![CDATA[Reply to variabeln umwandeln on Wed, 05 Oct 2005 06:37:24 GMT]]></title><description><![CDATA[<p>wenn man sven eingiebt soll er dan meinen namen timo ausgeben<br />
das will ich mit diesem code bezwecken</p>
<p>mfg PCfreak</p>
]]></description><link>https://www.c-plusplus.net/forum/post/885321</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/885321</guid><dc:creator><![CDATA[PCfreak]]></dc:creator><pubDate>Wed, 05 Oct 2005 06:37:24 GMT</pubDate></item><item><title><![CDATA[Reply to variabeln umwandeln on Wed, 05 Oct 2005 06:40:19 GMT]]></title><description><![CDATA[<p>hm...naja ganz primitiv so viell.</p>
<pre><code class="language-cpp">string name;
 cout&lt;&lt;&quot;Gib vorname ein: &quot;&lt;&lt;endl;
 cin&gt;&gt;name;
 if(name==&quot;Sven&quot;)
  cout&lt;&lt;&quot;Timo&quot;&lt;&lt;endl;
 else
  cout&lt;&lt;name;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/885322</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/885322</guid><dc:creator><![CDATA[ser1al]]></dc:creator><pubDate>Wed, 05 Oct 2005 06:40:19 GMT</pubDate></item><item><title><![CDATA[Reply to variabeln umwandeln on Wed, 05 Oct 2005 07:39:06 GMT]]></title><description><![CDATA[<p>PCfreak schrieb:</p>
<blockquote>
<p>char s;<br />
// ...<br />
int s = t;</p>
</blockquote>
<p>Du kannst keine int-Variable namens s anlegen, weil du schon eine char-Variable namens s im selben Scope hast. Das steht aber in jedem Grundlagentutorial.</p>
<p>Und Zeichenliterale setzt man in Hochkommas. Das steht auch in jedem Grundlagentutorial.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/885364</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/885364</guid><dc:creator><![CDATA[MFK]]></dc:creator><pubDate>Wed, 05 Oct 2005 07:39:06 GMT</pubDate></item><item><title><![CDATA[Reply to variabeln umwandeln on Wed, 05 Oct 2005 07:44:06 GMT]]></title><description><![CDATA[<p>MFK schrieb:</p>
<blockquote>
<p>PCfreak schrieb:</p>
<blockquote>
<p>char s;<br />
// ...<br />
int s = t;</p>
</blockquote>
<p>Du kannst keine int-Variable namens s anlegen, weil du schon eine char-Variable namens s im selben Scope hast. Das steht aber in jedem Grundlagentutorial.</p>
<p>Und Zeichenliterale setzt man in Hochkommas. Das steht auch in jedem Grundlagentutorial.</p>
</blockquote>
<p>soll heißen, nochmal ein grundlagentutorial durchgehen...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/885367</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/885367</guid><dc:creator><![CDATA[ser1al]]></dc:creator><pubDate>Wed, 05 Oct 2005 07:44:06 GMT</pubDate></item></channel></rss>