<?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[Pointer&#x2F;strToken]]></title><description><![CDATA[<p>Hallo ich habe folgende Aufgabe</p>
<p>Ihre Aufgabe ist es, einen Taschenrechner in C++ zu erstellen.Die Eingaben sollen über eine Konsole<br />
in einer Zeile erfolgen. Das Format ist befehl arg1 arg2 … argN. Ein Beispiel zur Eingabe<br />
dafür wäre dann wie folgt:<br />
add 20 22<br />
42<br />
add 6 8 9<br />
23</p>
<p>Realisieren Sie das “Grundgerüst” ihrer Anwendung. Holen Sie die Eingabe vom Benutzer. Die Anzahl der Parameter soll variabel sein. Machen sie die Argumente einzeln ansprechbar.</p>
<p>Aber iregendwie klappt das alles nicht</p>
<p>DANKE SCHON MAL</p>
<p>Hier mein CODE</p>
<pre><code class="language-cpp">#include &quot;StdAfx.h&quot;
#include &lt;string&gt;
#include &lt;iostream&gt;
#include &lt;cstring&gt;)
//#include &lt;taschenrechner.h&gt;
using namespace std;

using namespace std;

int main(){

	string eingabe;

	cout &lt;&lt; &quot;Befehl eingeben: &quot;  &lt;&lt;endl;
	getline(cin, eingabe);

	char* zeichen = new char[eingabe.size()+1];
	strcpy(zeichen, eingabe.c_str());

	char* arr = new char[(eingabe.size()+1)];

	arr[0] = strtok(zeichen, &quot; &quot;); 
      int i = 0;                               
    while(arr[i]!= NULL) 
        {  
        i++;
        arr[i] = strtok(NULL, &quot; &quot;); 
	}
			system(&quot;pause&quot;);
			return 0;

}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/294444/pointer-strtoken</link><generator>RSS for Node</generator><lastBuildDate>Sat, 15 Aug 2026 19:44:17 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/294444.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 25 Oct 2011 10:17:53 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 10:17:53 GMT]]></title><description><![CDATA[<p>Hallo ich habe folgende Aufgabe</p>
<p>Ihre Aufgabe ist es, einen Taschenrechner in C++ zu erstellen.Die Eingaben sollen über eine Konsole<br />
in einer Zeile erfolgen. Das Format ist befehl arg1 arg2 … argN. Ein Beispiel zur Eingabe<br />
dafür wäre dann wie folgt:<br />
add 20 22<br />
42<br />
add 6 8 9<br />
23</p>
<p>Realisieren Sie das “Grundgerüst” ihrer Anwendung. Holen Sie die Eingabe vom Benutzer. Die Anzahl der Parameter soll variabel sein. Machen sie die Argumente einzeln ansprechbar.</p>
<p>Aber iregendwie klappt das alles nicht</p>
<p>DANKE SCHON MAL</p>
<p>Hier mein CODE</p>
<pre><code class="language-cpp">#include &quot;StdAfx.h&quot;
#include &lt;string&gt;
#include &lt;iostream&gt;
#include &lt;cstring&gt;)
//#include &lt;taschenrechner.h&gt;
using namespace std;

using namespace std;

int main(){

	string eingabe;

	cout &lt;&lt; &quot;Befehl eingeben: &quot;  &lt;&lt;endl;
	getline(cin, eingabe);

	char* zeichen = new char[eingabe.size()+1];
	strcpy(zeichen, eingabe.c_str());

	char* arr = new char[(eingabe.size()+1)];

	arr[0] = strtok(zeichen, &quot; &quot;); 
      int i = 0;                               
    while(arr[i]!= NULL) 
        {  
        i++;
        arr[i] = strtok(NULL, &quot; &quot;); 
	}
			system(&quot;pause&quot;);
			return 0;

}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2135480</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135480</guid><dc:creator><![CDATA[marv86]]></dc:creator><pubDate>Tue, 25 Oct 2011 10:17:53 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 10:26:00 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;string&gt;
#include &lt;vector&gt;
#include &lt;sstream&gt;

std::vector&lt;std::string&gt; split_string(std::string s)
{
    std::istringstream iss(a);
    std::vector&lt;std::string&gt; substrings;

    while(iss &gt;&gt; s)
        substrings.push_back(s);

    return substrings;
}
</code></pre>
<p>Hilft dir das weiter?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135481</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135481</guid><dc:creator><![CDATA[314159265358979]]></dc:creator><pubDate>Tue, 25 Oct 2011 10:26:00 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 10:26:26 GMT]]></title><description><![CDATA[<p>Ich würde das gerne mit pointer machen<br />
bzw es kann auch sein das ich das mit pointer machen &quot;muss&quot;<br />
Ich danke dir erst mal<br />
Bin für weitere Ideen sehr dankbar</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135483</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135483</guid><dc:creator><![CDATA[marv86]]></dc:creator><pubDate>Tue, 25 Oct 2011 10:26:26 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 10:27:58 GMT]]></title><description><![CDATA[<p>In der Aufgabenstellung steht nichts von Zeiger, also kannst du es doch so machen. Ist einfacher &amp;&amp; nicht so fehleranfällig.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135486</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135486</guid><dc:creator><![CDATA[314159265358979]]></dc:creator><pubDate>Tue, 25 Oct 2011 10:27:58 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 10:34:54 GMT]]></title><description><![CDATA[<p>314159265358979 schrieb:</p>
<blockquote>
<p>In der Aufgabenstellung steht nichts von Zeiger, also kannst du es doch so machen. Ist einfacher &amp;&amp; nicht so fehleranfällig.</p>
</blockquote>
<p>Vectoren wurden noch nicht behandelt</p>
<p>Wie muss ich denn meinen code anpassen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135492</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135492</guid><dc:creator><![CDATA[marv86]]></dc:creator><pubDate>Tue, 25 Oct 2011 10:34:54 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 10:39:20 GMT]]></title><description><![CDATA[<p>Dann guck dir vector mal an, das ist ganz einfach und macht deinen Code um einiges besser. <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="😉"
    /><br />
<a href="http://www.cplusplus.com/reference/stl/vector/" rel="nofollow">http://www.cplusplus.com/reference/stl/vector/</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135494</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135494</guid><dc:creator><![CDATA[314159265358979]]></dc:creator><pubDate>Tue, 25 Oct 2011 10:39:20 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 10:40:55 GMT]]></title><description><![CDATA[<p>314159265358979 schrieb:</p>
<blockquote>
<p>Dann guck dir vector mal an, das ist ganz einfach und macht deinen Code um einiges besser. <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="😉"
    /><br />
<a href="http://www.cplusplus.com/reference/stl/vector/" rel="nofollow">http://www.cplusplus.com/reference/stl/vector/</a></p>
</blockquote>
<p><strong>Wie muss ich denn meinen code anpassen?</strong></p>
<p>Bitte geht auf meine Frage ein...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135497</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135497</guid><dc:creator><![CDATA[marv86]]></dc:creator><pubDate>Tue, 25 Oct 2011 10:40:55 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 10:43:00 GMT]]></title><description><![CDATA[<p>Warum weigerst du dich, etwas neues zu lernen? Nur weil dein Professor/Lehrer/Buch schlecht ist, heißt das nicht, dass du das alles nachmachen musst.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135498</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135498</guid><dc:creator><![CDATA[314159265358979]]></dc:creator><pubDate>Tue, 25 Oct 2011 10:43:00 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 10:44:43 GMT]]></title><description><![CDATA[<p>314159265358979 schrieb:</p>
<blockquote>
<p>Warum weigerst du dich, etwas neues zu lernen? Nur weil dein Professor/Lehrer/Buch schlecht ist, heißt das nicht, dass du das alles nachmachen musst.</p>
</blockquote>
<p><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/2135499</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135499</guid><dc:creator><![CDATA[marv86]]></dc:creator><pubDate>Tue, 25 Oct 2011 10:44:43 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 11:17:19 GMT]]></title><description><![CDATA[<p>Aber da hat der Pi recht... ist gruseliger Code, den du uns da vorgestellt hast, das sollte es seit 10 Jahren nicht mehr in freier Wildbahn geben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135514</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135514</guid><dc:creator><![CDATA[DocShoe]]></dc:creator><pubDate>Tue, 25 Oct 2011 11:17:19 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 11:40:59 GMT]]></title><description><![CDATA[<p>Hmm, also wenn du so ein Gefrikel und es ohne C++ Hilfen machen willst, was hälst du dann hiervon?</p>
<pre><code class="language-cpp">#include &lt;string&gt;
#include &lt;iostream&gt;
#include &lt;cstring&gt;
using namespace std;

int main()
{
    string eingabe;
    cout &lt;&lt; &quot;Befehl eingeben: &quot;  &lt;&lt; endl;
    getline(cin,eingabe);

    char* zeichen = new char[eingabe.size()+1];
    strcpy(zeichen, eingabe.c_str());

    int erg=0;
    if(strstr(zeichen,&quot;add&quot;))
    {
        for(int i=3; i&lt;=strlen(zeichen); ++i)
        {
            if(zeichen[i]&gt;='0' &amp;&amp; zeichen[i]&lt;='9')
                erg += zeichen[i]-'0';
        }
    }
    else if(strstr(zeichen,&quot;sub&quot;))
    {
        for(int i=3; i&lt;=strlen(zeichen); ++i)
        {
            if(zeichen[i]&gt;='0' &amp;&amp; zeichen[i]&lt;='9')
                erg -= zeichen[i]-'0';
        }
    }
    cout &lt;&lt; erg;

    //...
}
</code></pre>
<p>Aber irgendwie find ich das grausam, genauso wie das, das dein Prof. tut, sieht mir irgendwie nach C/C++ Gefrikel aus. Wurde aber bei uns auch so gelehrt, leider :(.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135529</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135529</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Tue, 25 Oct 2011 11:40:59 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 12:01:14 GMT]]></title><description><![CDATA[<p>DocShoe schrieb:</p>
<blockquote>
<p>Aber da hat der Pi recht... ist gruseliger Code, den du uns da vorgestellt hast, das sollte es seit 10 Jahren nicht mehr in freier Wildbahn geben.</p>
</blockquote>
<p>Das sehe ich ja gerne ein<br />
Kann mit denn einer die Lösung zu der oben geschriebenen Fragestellung geben?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135542</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135542</guid><dc:creator><![CDATA[marv86]]></dc:creator><pubDate>Tue, 25 Oct 2011 12:01:14 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 12:05:26 GMT]]></title><description><![CDATA[<p>Gugelmoser schrieb:</p>
<blockquote>
<p>Hmm, also wenn du so ein Gefrikel und es ohne C++ Hilfen machen willst, was hälst du dann hiervon?</p>
<pre><code class="language-cpp">#include &lt;string&gt;
#include &lt;iostream&gt;
#include &lt;cstring&gt;
using namespace std;

int main()
{
    string eingabe;
    cout &lt;&lt; &quot;Befehl eingeben: &quot;  &lt;&lt; endl;
    getline(cin,eingabe);
    
    char* zeichen = new char[eingabe.size()+1];
    strcpy(zeichen, eingabe.c_str());
    
    int erg=0;
    if(strstr(zeichen,&quot;add&quot;))
    {
        for(int i=3; i&lt;=strlen(zeichen); ++i)
        {
            if(zeichen[i]&gt;='0' &amp;&amp; zeichen[i]&lt;='9')
                erg += zeichen[i]-'0';
        }
    }
    else if(strstr(zeichen,&quot;sub&quot;))
    {
        for(int i=3; i&lt;=strlen(zeichen); ++i)
        {
            if(zeichen[i]&gt;='0' &amp;&amp; zeichen[i]&lt;='9')
                erg -= zeichen[i]-'0';
        }
    }
    cout &lt;&lt; erg;

    //...
}
</code></pre>
<p>Aber irgendwie find ich das grausam, genauso wie das, das dein Prof. tut, sieht mir irgendwie nach C/C++ Gefrikel aus. Wurde aber bei uns auch so gelehrt, leider :(.</p>
</blockquote>
<p>ich danke dir erst mal und werde das später mal testen<br />
DANKE</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135543</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135543</guid><dc:creator><![CDATA[marv86]]></dc:creator><pubDate>Tue, 25 Oct 2011 12:05:26 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 12:19:32 GMT]]></title><description><![CDATA[<p>nehme auch gerne LÖSUNGEN mit vectoren an...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135550</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135550</guid><dc:creator><![CDATA[marv86]]></dc:creator><pubDate>Tue, 25 Oct 2011 12:19:32 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 12:46:02 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;string&gt;
#include &lt;iostream&gt;
#include &lt;cstring&gt;
using namespace std; 

int main()
{
    string eingabe;
    cout &lt;&lt; &quot;Befehl eingeben: &quot;  &lt;&lt; endl;
    getline(cin,eingabe);

    char* zeichen = new char[eingabe.size()+1];
    strcpy(zeichen,eingabe.c_str()); 

    char* token = strtok (zeichen,&quot; &quot;);
    char arr[10][4] = {}; // Die Größenangaben hier sind halt doof.
    for(int i=0; token!=NULL; ++i)
    {
        strcpy(arr[i], token);
        token = strtok (NULL,&quot; &quot;);
        cout &lt;&lt; arr[i] &lt;&lt; endl;
    }

    // Jetzt hast alle Teile in arr stehen.
}
</code></pre>
<p>Und wie willst nun weiter machen? Soll man keine Vorzeichen eingeben können?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135558</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135558</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Tue, 25 Oct 2011 12:46:02 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 12:41:10 GMT]]></title><description><![CDATA[<p>Eine Lösung mit vector hast du doch schon fast.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135562</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135562</guid><dc:creator><![CDATA[314159265358979]]></dc:creator><pubDate>Tue, 25 Oct 2011 12:41:10 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 12:43:10 GMT]]></title><description><![CDATA[<p>Das, was du uns am Anfang präsentiert hast, ist ein &quot;downgrade&quot; im wahrsten Sinne des Wortes:</p>
<pre><code class="language-cpp">string eingabe; 

    //... 

    char* zeichen = new char[eingabe.size()+1]; 
    strcpy(zeichen, eingabe.c_str());
</code></pre>
<p>Du &quot;kennst&quot; std::string, willst aber mit daraus gebastelten rohen Arrays vom Heap arbeiten... (Kopfschütteln)</p>
<p>Außerdem: wenn du nach fertigen Lösungen suchst, dann bist du hier fehl am Platz. Wir können dir nur Ansätze anbieten und dir auf die Sprünge helfen. Danach ist es deine Aufgabe, daraus eine Lösung zu machen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135563</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135563</guid><dc:creator><![CDATA[*Rewind*]]></dc:creator><pubDate>Tue, 25 Oct 2011 12:43:10 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 12:44:34 GMT]]></title><description><![CDATA[<p>Gugelmoser schrieb:</p>
<blockquote>
<pre><code class="language-cpp">#include &lt;string&gt;
#include &lt;iostream&gt;
#include &lt;cstring&gt;
using namespace std; 

int main()
{
    string eingabe;
    cout &lt;&lt; &quot;Befehl eingeben: &quot;  &lt;&lt; endl;
    getline(cin,eingabe);
   
    char* zeichen = new char[eingabe.size()+1];
    strcpy(zeichen,eingabe.c_str()); 
    
    char* token = strtok (zeichen,&quot; &quot;);
    char arr[10][4]; // Die Größenangaben hier sind halt doof.
    for(int i=0; token!=NULL; ++i)
    {
        strcpy(arr[i], token);
        token = strtok (NULL,&quot; &quot;);
        cout &lt;&lt; arr[i] &lt;&lt; endl;
    }

    // Jetzt hast alle Teile in arr stehen.
}
</code></pre>
<p>Und wie willst nun weiter machen? Soll man keine Vorzeichen eingeben können?</p>
</blockquote>
<p>man soll zB</p>
<pre><code>add 20 22
</code></pre>
<p>eingeben<br />
dies soll dann berechnet werden (in dem fall add=addieren)<br />
die anzahl der zahlen soll variabel sein</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135564</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135564</guid><dc:creator><![CDATA[marv86]]></dc:creator><pubDate>Tue, 25 Oct 2011 12:44:34 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 12:47:50 GMT]]></title><description><![CDATA[<p>Hilft dir das nun weiter was ich oder wer anders geschriebn hat? Kommst mit dem add sub mul... alleine klar?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135567</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135567</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Tue, 25 Oct 2011 12:47:50 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 12:50:08 GMT]]></title><description><![CDATA[<p>Gugelmoser schrieb:</p>
<blockquote>
<p>Hilft dir das nun weiter was ich oder wer anders geschriebn hat? Kommst mit dem add sub mul... alleine klar?</p>
</blockquote>
<p>ich werde es versuchen</p>
<p>VIELEN DANK SCHON MAL FÜR DIE MÜHE</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135568</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135568</guid><dc:creator><![CDATA[marv86]]></dc:creator><pubDate>Tue, 25 Oct 2011 12:50:08 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 13:21:23 GMT]]></title><description><![CDATA[<p>Unfassbar, wozu sitzt du in so einem Kurs und fragst hier nur nach LÖSUNGEN. Wozu denkst du postet Pi einen link zu Vectoren und sagt dir auch noch, dass du diesen mal anschauen sollst ? Dann beschwerst du dich, dass er dir nicht die Häppchen vorkauft und dir dann genau sagt, was du ändern musst, anstatt einfach mal zu lesen und zu machen. Unfassbar.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135580</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135580</guid><dc:creator><![CDATA[cvcv]]></dc:creator><pubDate>Tue, 25 Oct 2011 13:21:23 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Tue, 25 Oct 2011 13:38:59 GMT]]></title><description><![CDATA[<p>cvcv schrieb:</p>
<blockquote>
<p>Unfassbar, wozu sitzt du in so einem Kurs und fragst hier nur nach LÖSUNGEN. Wozu denkst du postet Pi einen link zu Vectoren und sagt dir auch noch, dass du diesen mal anschauen sollst ? Dann beschwerst du dich, dass er dir nicht die Häppchen vorkauft und dir dann genau sagt, was du ändern musst, anstatt einfach mal zu lesen und zu machen. Unfassbar.</p>
</blockquote>
<p>danke für deine belehrung</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135598</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135598</guid><dc:creator><![CDATA[marv86]]></dc:creator><pubDate>Tue, 25 Oct 2011 13:38:59 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Wed, 26 Oct 2011 08:10:43 GMT]]></title><description><![CDATA[<p>cvcv schrieb:</p>
<blockquote>
<p>Unfassbar.</p>
</blockquote>
<p>Ja, ist es. Einfach solche dreisten &quot;Macht mir meine Hausaufgaben&quot;-Aufrufe ignorieren. Alles andere ist nur Zeitverschwendung.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2135912</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2135912</guid><dc:creator><![CDATA[krümelkacker]]></dc:creator><pubDate>Wed, 26 Oct 2011 08:10:43 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Fri, 28 Oct 2011 20:25:30 GMT]]></title><description><![CDATA[<p>Hey,</p>
<p>Auch wenns offtopic ist, möchte ich es gern loswerden:</p>
<p>Ein anderer Lösungsansatz ist es auch, das du einfach zu uns ins Praktikum kommst. Bis zur Abgabe gibt es (theoretisch) 3x 2x 90 Minuten Zeit in denen wir extra für dich da sind.</p>
<p>Alternativ kannst du uns auch eine E-Mail schreiben. Wofür schreiben wir denn die E-Mail Adressen unten aufs Aufgabenblatt?</p>
<p>Denn dafür werden wir Tutoren ja schließlich bezahlt...</p>
<p>Viel Erfolg noch bei der Aufgabe <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>
<p>edit: Für diese Aufgabe sind Pointer nicht zwingend erforderlich...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2137308</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2137308</guid><dc:creator><![CDATA[dandan]]></dc:creator><pubDate>Fri, 28 Oct 2011 20:25:30 GMT</pubDate></item><item><title><![CDATA[Reply to Pointer&#x2F;strToken on Sat, 29 Oct 2011 08:24:55 GMT]]></title><description><![CDATA[<blockquote>
<p>Aber iregendwie klappt das alles nicht</p>
</blockquote>
<p>Das ist keine hilfreiche Fehlerbeschreibung! Ich hätte Dir mit so wenig eigener Initiative nicht geholfen.</p>
<p>Gruss</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2137372</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2137372</guid><dc:creator><![CDATA[lupo1977]]></dc:creator><pubDate>Sat, 29 Oct 2011 08:24:55 GMT</pubDate></item></channel></rss>