<?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[fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde]]></title><description><![CDATA[<p>Fehler fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer '{' gefunden wurde</p>
<p>edit: &quot;Siehe Titel&quot; weggemacht, denn damit kann man die Frage nicht gescheit quoten.</p>
<p>Diese Frage wurde schon gestellt, aber ich habe ja einen anderen Code.<br />
Kann mir jemand sagen, wo der Fehler liegt? Das Programm dient dazu, Celsius in Fahrenheit und andersrum umzurechenen. Den Code findet ihr unter <a href="http://Programm.de.vc" rel="nofollow">Programm.de.vc</a></p>
<p>tbremer19</p>
<p>edit: Und natürlich hier:</p>
<pre><code class="language-cpp">// Temperaturumrechner.cpp : Definiert den Einstiegspunkt für die Konsolenanwendung.
//
#include &quot;stdafx.h&quot;
#include &quot;targetver.h&quot;
#include &quot;iostream&quot; //Das ist Kommentar
#include &quot;string&quot;
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	char chAuswahl;
	cout &lt;&lt; &quot;&lt;A&gt; Celsius zu Fahrenheit&quot; ;
	cout &lt;&lt; &quot;&lt;B&gt; Fahrenheit zu Celsius&quot; ;
	cin &gt;&gt; chAuswahl ;
	switch (chAuswahl)
	{
	case 'A':
	case 'a':
		{
			double fahrenheit ;
	double celsius ;

	cout &lt;&lt; &quot;Temperatur in Fahrenheit: &quot; ;
    cin &gt;&gt; fahrenheit ;
	getchar();

	celsius = (fahrenheit - 32 ) * 5.0 /9.0 ;
	cout.precision(2);
	cout &lt;&lt; fixed;

	cout &lt;&lt; fahrenheit
		 &lt;&lt; &quot;Grad Fahrenheit entsprechen &quot;
		 &lt;&lt; celsius
		 &lt;&lt; &quot; Grad Celsius&quot; &lt;&lt; endl ;
		}break; 
		getchar();

	case 'B' :
	case 'b':
		{
			double celsius ;
	double fahrenheit ;

	cout &lt;&lt; &quot;Temperatur in Celsius: &quot; ;
    cin &gt;&gt; celsius ;
	getchar();

	fahrenheit = ((celsius *9 ) / 5 ) + 32 ;
	cout.precision(2);
	cout &lt;&lt; fixed;

	cout &lt;&lt; fahrenheit
		 &lt;&lt; &quot;Grad Celsius entsprechen &quot;
		 &lt;&lt; fahrenheit
		 &lt;&lt; &quot; Grad Fahrenheit&quot; &lt;&lt; endl ;
		}break;

	getchar();

	return 0;

	}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/288160/fatal-error-c1075-dateiende-erreicht-bevor-das-zugehörige-element-für-das-linke-element-klammer-gefunden-wurde</link><generator>RSS for Node</generator><lastBuildDate>Fri, 24 Apr 2026 18:18:41 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/288160.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 11 Jun 2011 13:07:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sat, 11 Jun 2011 13:19:33 GMT]]></title><description><![CDATA[<p>Fehler fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer '{' gefunden wurde</p>
<p>edit: &quot;Siehe Titel&quot; weggemacht, denn damit kann man die Frage nicht gescheit quoten.</p>
<p>Diese Frage wurde schon gestellt, aber ich habe ja einen anderen Code.<br />
Kann mir jemand sagen, wo der Fehler liegt? Das Programm dient dazu, Celsius in Fahrenheit und andersrum umzurechenen. Den Code findet ihr unter <a href="http://Programm.de.vc" rel="nofollow">Programm.de.vc</a></p>
<p>tbremer19</p>
<p>edit: Und natürlich hier:</p>
<pre><code class="language-cpp">// Temperaturumrechner.cpp : Definiert den Einstiegspunkt für die Konsolenanwendung.
//
#include &quot;stdafx.h&quot;
#include &quot;targetver.h&quot;
#include &quot;iostream&quot; //Das ist Kommentar
#include &quot;string&quot;
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	char chAuswahl;
	cout &lt;&lt; &quot;&lt;A&gt; Celsius zu Fahrenheit&quot; ;
	cout &lt;&lt; &quot;&lt;B&gt; Fahrenheit zu Celsius&quot; ;
	cin &gt;&gt; chAuswahl ;
	switch (chAuswahl)
	{
	case 'A':
	case 'a':
		{
			double fahrenheit ;
	double celsius ;

	cout &lt;&lt; &quot;Temperatur in Fahrenheit: &quot; ;
    cin &gt;&gt; fahrenheit ;
	getchar();

	celsius = (fahrenheit - 32 ) * 5.0 /9.0 ;
	cout.precision(2);
	cout &lt;&lt; fixed;

	cout &lt;&lt; fahrenheit
		 &lt;&lt; &quot;Grad Fahrenheit entsprechen &quot;
		 &lt;&lt; celsius
		 &lt;&lt; &quot; Grad Celsius&quot; &lt;&lt; endl ;
		}break; 
		getchar();

	case 'B' :
	case 'b':
		{
			double celsius ;
	double fahrenheit ;

	cout &lt;&lt; &quot;Temperatur in Celsius: &quot; ;
    cin &gt;&gt; celsius ;
	getchar();

	fahrenheit = ((celsius *9 ) / 5 ) + 32 ;
	cout.precision(2);
	cout &lt;&lt; fixed;

	cout &lt;&lt; fahrenheit
		 &lt;&lt; &quot;Grad Celsius entsprechen &quot;
		 &lt;&lt; fahrenheit
		 &lt;&lt; &quot; Grad Fahrenheit&quot; &lt;&lt; endl ;
		}break;

	getchar();

	return 0;

	}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2076725</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2076725</guid><dc:creator><![CDATA[tbremer19]]></dc:creator><pubDate>Sat, 11 Jun 2011 13:19:33 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sat, 11 Jun 2011 13:10:06 GMT]]></title><description><![CDATA[<p>Nun, was mag diese Fehlermeldung wohl bedeuten? <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>
<p>Wenn du das beantworten kannst, dann weißt du auch wonach du suchen musst.</p>
<p>Tipp: Rate mal, welches andere Element wohl zu einer '{' passt und fehlen könnte.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2076728</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2076728</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Sat, 11 Jun 2011 13:10:06 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sat, 11 Jun 2011 13:11:52 GMT]]></title><description><![CDATA[<p>tbremer19 schrieb:</p>
<blockquote>
<p>Den Code findet ihr unter <a href="http://Programm.de.vc" rel="nofollow">Programm.de.vc</a></p>
</blockquote>
<p>Da wird keiner reinschauen. Reduzier den Code aufs wesentliche und poste ihn hier.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2076730</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2076730</guid><dc:creator><![CDATA[pumuckl]]></dc:creator><pubDate>Sat, 11 Jun 2011 13:11:52 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sat, 11 Jun 2011 13:16:03 GMT]]></title><description><![CDATA[<p>Wo muss die zweite Klammer denn hin?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2076733</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2076733</guid><dc:creator><![CDATA[tbremer19]]></dc:creator><pubDate>Sat, 11 Jun 2011 13:16:03 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sat, 11 Jun 2011 13:17:40 GMT]]></title><description><![CDATA[<p>// Temperaturumrechner.cpp : Definiert den Einstiegspunkt für die Konsolenanwendung.<br />
//<br />
#include &quot;stdafx.h&quot;<br />
#include &quot;targetver.h&quot;<br />
#include &quot;iostream&quot; //Das ist Kommentar<br />
#include &quot;string&quot;<br />
using namespace std;</p>
<p>int _tmain(int argc, _TCHAR* argv[])<br />
{<br />
char chAuswahl;<br />
cout &lt;&lt; &quot;&lt;A&gt; Celsius zu Fahrenheit&quot; ;<br />
cout &lt;&lt; &quot;&lt;B&gt; Fahrenheit zu Celsius&quot; ;<br />
cin &gt;&gt; chAuswahl ;<br />
switch (chAuswahl)<br />
{<br />
case 'A':<br />
case 'a':<br />
{<br />
double fahrenheit ;<br />
double celsius ;</p>
<p>cout &lt;&lt; &quot;Temperatur in Fahrenheit: &quot; ;<br />
cin &gt;&gt; fahrenheit ;<br />
getchar();</p>
<p>celsius = (fahrenheit - 32 ) * 5.0 /9.0 ;<br />
cout.precision(2);<br />
cout &lt;&lt; fixed;</p>
<p>cout &lt;&lt; fahrenheit<br />
&lt;&lt; &quot;Grad Fahrenheit entsprechen &quot;<br />
&lt;&lt; celsius<br />
&lt;&lt; &quot; Grad Celsius&quot; &lt;&lt; endl ;<br />
}break;<br />
getchar();</p>
<p>case 'B' :<br />
case 'b':<br />
{<br />
double celsius ;<br />
double fahrenheit ;</p>
<p>cout &lt;&lt; &quot;Temperatur in Celsius: &quot; ;<br />
cin &gt;&gt; celsius ;<br />
getchar();</p>
<p>fahrenheit = ((celsius *9 ) / 5 ) + 32 ;<br />
cout.precision(2);<br />
cout &lt;&lt; fixed;</p>
<p>cout &lt;&lt; fahrenheit<br />
&lt;&lt; &quot;Grad Celsius entsprechen &quot;<br />
&lt;&lt; fahrenheit<br />
&lt;&lt; &quot; Grad Fahrenheit&quot; &lt;&lt; endl ;<br />
}break;</p>
<p>getchar();</p>
<p>return 0;</p>
<p>}</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2076734</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2076734</guid><dc:creator><![CDATA[tbremer19]]></dc:creator><pubDate>Sat, 11 Jun 2011 13:17:40 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sat, 11 Jun 2011 13:27:38 GMT]]></title><description><![CDATA[<p>Mein Vorschlag: Verwende eine vernüftige Code-Einrückung (oder eine IDE, die sowas automatisch macht), dann siehst du auch, welche Klammer an welcher Stelle wieder geschlossen wird.</p>
<p>PS: Zeile 17 <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2076737</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2076737</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Sat, 11 Jun 2011 13:27:38 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sat, 11 Jun 2011 13:33:21 GMT]]></title><description><![CDATA[<p>Konkret:<br />
Ich vermute, Du nimmst die IDE von Microsoft, wenn ja, drücke<br />
Strg+A (Alles markieren)<br />
Alt+F8 (Markiertes Zeug automatisch einrücken)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2076738</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2076738</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Sat, 11 Jun 2011 13:33:21 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sat, 11 Jun 2011 13:48:10 GMT]]></title><description><![CDATA[<p>bei dir fehlt ganz am ende noch eine }</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2076746</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2076746</guid><dc:creator><![CDATA[Skym0sh0]]></dc:creator><pubDate>Sat, 11 Jun 2011 13:48:10 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sat, 11 Jun 2011 15:26:55 GMT]]></title><description><![CDATA[<p>CStoll schrieb:</p>
<blockquote>
<p>Mein Vorschlag: Verwende eine vernüftige Code-Einrückung (oder eine IDE, die sowas automatisch macht), dann siehst du auch, welche Klammer an welcher Stelle wieder geschlossen wird.</p>
<p>PS: Zeile 17 <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
</blockquote>
<p>Ich verwende Visual C++ 2010 Express.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2076766</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2076766</guid><dc:creator><![CDATA[tbremer19]]></dc:creator><pubDate>Sat, 11 Jun 2011 15:26:55 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sat, 11 Jun 2011 15:33:55 GMT]]></title><description><![CDATA[<p>tbremer19 schrieb:</p>
<blockquote>
<p>Ich verwende Visual C++ 2010 Express.</p>
</blockquote>
<p>Ich hab' zwar noch nicht mit der Express gearbeitet, aber nach meinen Erfahrungen ist MSVC recht gut damit, den Code automatisch einzurücken.</p>
<p>Ansonsten noch etwas konkreter: Wo endet die switch(chAuswahl)-Anweisung in deinem Programm?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2076767</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2076767</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Sat, 11 Jun 2011 15:33:55 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sat, 11 Jun 2011 17:46:40 GMT]]></title><description><![CDATA[<p>switch endet nach dem letzten break.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2076802</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2076802</guid><dc:creator><![CDATA[tbremer19]]></dc:creator><pubDate>Sat, 11 Jun 2011 17:46:40 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sat, 11 Jun 2011 17:50:05 GMT]]></title><description><![CDATA[<p>Bist du dir da ganz sicher? Laut Syntax-Regeln von C++ endet die Verbund-Anweisung unter dem switch() mit der entsprechenden schließenden Klammer - und nach dem break gibt es keine schließende Klammer, damit gelten die getchar() und return-Anweisung auch noch als Teil des switch (und als toter Code).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2076807</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2076807</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Sat, 11 Jun 2011 17:50:05 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sun, 22 Nov 2015 21:32:01 GMT]]></title><description><![CDATA[<p>Tach bin Programmier Anfänger und habe das selbe Problem. Hier ist der Code<br />
:</p>
<pre><code>//SteinScherePapier
//
#include&lt;iostream&gt;
#include&lt;ctime&gt;

using namespace std;

//Funktionen
void Game();

int main() {

	Game();

	return 0;
}

void Game() {
	//Veriabeln
	int KIselction = 0, PLAYERselction = 0, limit = 3;
	//RandomErschaffen
	srand((unsigned)time(0));

	for (int i = 0; i &lt; 10; i++) {

		//SpielerWahl
		cout &lt;&lt; &quot;Was willst du 1.Stein, 2.Schere, 3.Papier?&quot; &lt;&lt; endl;
		cin &gt;&gt; PLAYERselction;

		//KiWahl
		KIselction = (rand() % limit) + 1;

		//
		if (KIselction == PLAYERselction &amp;&amp; PLAYERselction == 1) {
			cout &lt;&lt; &quot;Unentschieden ihr beide habt Stein!&quot; &lt;&lt; endl;
		}
		else if (KIselction == PLAYERselction &amp;&amp; PLAYERselction == 2) {
			cout &lt;&lt; &quot;Unentschieden ihr beide habt Schere!&quot; &lt;&lt; endl;
		}
		else if (KIselction == PLAYERselction &amp;&amp; PLAYERselction == 3) {
			cout &lt;&lt; &quot;Unentschieden ihr beide habt Papier!&quot; &lt;&lt; endl;
		}
		else if (KIselction == 1 &amp;&amp; PLAYERselction == 2) {
			cout &lt;&lt; &quot;Die KI gewinnt. (Stein schlägt Schere)&quot; &lt;&lt; endl;
		}
		else if (KIselction == 2 &amp;&amp; PLAYERselction == 3) {
			cout &lt;&lt; &quot;Die KI gewinnt. (Schere schlägt Papier)&quot; &lt;&lt; endl;
		}
		else if (KIselction == 3 &amp;&amp; PLAYERselction == 1) {
			cout &lt;&lt; &quot;Die KI gewinnt. (Papier schlägt Stein )&quot; &lt;&lt; endl;
		}
		else if (KIselction == 1 &amp;&amp; PLAYERselction == 3) {
			cout &lt;&lt; &quot;Der Spieler gewinnt. (Papier schlägt Stein )&quot; &lt;&lt; endl;
		}
		else if (KIselction == 3 &amp;&amp; PLAYERselction == 2) {
			cout &lt;&lt; &quot;Der Spieler gewinnt. (Schere schlägt Papier)&quot; &lt;&lt; endl;
		}
		else if (KIselction == 2 &amp;&amp; PLAYERselction == 1) {
			cout &lt;&lt; &quot;Der Spieler gewinnt. (Stein schlägt Schere)&quot; &lt;&lt; endl;
		}
		else {
			cout &lt;&lt; &quot;Fehler&quot; &lt;&lt; endl;
		}
	}
</code></pre>
<p>Komisch ist das der Fehler in der 90 Zeile auftaucht wobei mein Code nur bis 64 geht....</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2476613</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2476613</guid><dc:creator><![CDATA[Unnnütz]]></dc:creator><pubDate>Sun, 22 Nov 2015 21:32:01 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sun, 22 Nov 2015 21:40:23 GMT]]></title><description><![CDATA[<p>Fällt denn der Fehler nicht direkt auf, wenn du den Code hier postest? Da fehlt doch offensichtlich etwas und die Fehlermeldung sagt sogar, was fehlt.</p>
<p>Allgemein gilt es als recht unhöflich, uralte Threads wieder zu beleben, bloß weil sie ein ähnliches Thema haben. Ein Leser kämpft sich dann erst durch mehrere Seiten irrelevantes Material um dann zu sehen, dass eine neue Frage gestellt wurde. Richtig wäre, den alten Thread zu lesen, ob er eine Lösung präsentiert (tut er in diesem Fall!) und falls dies nicht hilft, fragt man eben noch einmal. Eventuell mit Verweis auf den alten Thread, dass die dortige Lösung einem nicht weiter geholfen hat und warum.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2476615</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2476615</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Sun, 22 Nov 2015 21:40:23 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sun, 22 Nov 2015 21:40:52 GMT]]></title><description><![CDATA[<p>Ja, du hast eine '}' vergessen. Warum lässt du die ganzen Klammern um die cout's nicht einfach weg? Dann wäre das auch nicht passiert.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2476616</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2476616</guid><dc:creator><![CDATA[Bitmapper]]></dc:creator><pubDate>Sun, 22 Nov 2015 21:40:52 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sun, 22 Nov 2015 21:42:58 GMT]]></title><description><![CDATA[<p>Bitmapper schrieb:</p>
<blockquote>
<p>Warum lässt du die ganzen Klammern um die cout's nicht einfach weg? Dann wäre das auch nicht passiert.</p>
</blockquote>
<p>Das ist schon ok die zu setzen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2476617</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2476617</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Sun, 22 Nov 2015 21:42:58 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sun, 22 Nov 2015 21:46:52 GMT]]></title><description><![CDATA[<p>SeppJ schrieb:</p>
<blockquote>
<p>Bitmapper schrieb:</p>
<blockquote>
<p>Warum lässt du die ganzen Klammern um die cout's nicht einfach weg? Dann wäre das auch nicht passiert.</p>
</blockquote>
<p>Das ist schon ok die zu setzen.</p>
</blockquote>
<p>Dann aber wenigstens die, die zusammengehören untereinander.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2476618</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2476618</guid><dc:creator><![CDATA[Bitmapper]]></dc:creator><pubDate>Sun, 22 Nov 2015 21:46:52 GMT</pubDate></item><item><title><![CDATA[Reply to fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer &#x27;{&#x27; gefunden wurde on Sun, 22 Nov 2015 23:06:33 GMT]]></title><description><![CDATA[<p>Bitmapper schrieb:</p>
<blockquote>
<p>SeppJ schrieb:</p>
<blockquote>
<p>Bitmapper schrieb:</p>
<blockquote>
<p>Warum lässt du die ganzen Klammern um die cout's nicht einfach weg? Dann wäre das auch nicht passiert.</p>
</blockquote>
<p>Das ist schon ok die zu setzen.</p>
</blockquote>
<p>Dann aber wenigstens die, die zusammengehören untereinander.</p>
</blockquote>
<p>Jupp.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2476623</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2476623</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Sun, 22 Nov 2015 23:06:33 GMT</pubDate></item></channel></rss>