<?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[Fortran Anfängerproblem]]></title><description><![CDATA[<p>Hi,</p>
<p>ich will mir gerade mal Fortran ansehen, hab aber leider auch schon ein Problem.<br />
Ich hab den Code 1:1 aus einem tutorial abgeschrieben und in mehreren anderen tutorials ähnliche Codes gefunden aber mein Compiler gfortran markiert jede Zeile als Fehlerhaft.</p>
<p>test.f</p>
<pre><code>program test
implicit none
write(*,*) 'hallo welt'
end program test
</code></pre>
<p>Den Compiler ruf ich mit gfortran test.f auf.<br />
Was könnte der Fehler sein?<br />
Und ist Fortran Case-Sensitiv?</p>
<p>mfg walljumper</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/195220/fortran-anfängerproblem</link><generator>RSS for Node</generator><lastBuildDate>Tue, 30 Jun 2026 06:40:03 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/195220.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 15 Oct 2007 14:51:42 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Fortran Anfängerproblem on Mon, 15 Oct 2007 14:51:42 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>ich will mir gerade mal Fortran ansehen, hab aber leider auch schon ein Problem.<br />
Ich hab den Code 1:1 aus einem tutorial abgeschrieben und in mehreren anderen tutorials ähnliche Codes gefunden aber mein Compiler gfortran markiert jede Zeile als Fehlerhaft.</p>
<p>test.f</p>
<pre><code>program test
implicit none
write(*,*) 'hallo welt'
end program test
</code></pre>
<p>Den Compiler ruf ich mit gfortran test.f auf.<br />
Was könnte der Fehler sein?<br />
Und ist Fortran Case-Sensitiv?</p>
<p>mfg walljumper</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1385709</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1385709</guid><dc:creator><![CDATA[walljumper]]></dc:creator><pubDate>Mon, 15 Oct 2007 14:51:42 GMT</pubDate></item><item><title><![CDATA[Reply to Fortran Anfängerproblem on Mon, 15 Oct 2007 15:30:18 GMT]]></title><description><![CDATA[<p>Rück den Code mal mit Tabs ein. (An den Anfang der Zeile schreibt man nur Labels und Kommentare. (Ähnlich wie bei vielen BASICs)).</p>
<p>Achso. FORTRAN 77 ist Case Sensitive. Aber keine Angst, du musst deine Caps-Lock-Taste nicht entstauben: Seit Fortran 95 ist Fortran glaube ich nicht mehr Case Sensitive (und gfortran ist ein Fortran 95 Compiler. Aber auch der g77 hat es schon immer insensitive verstanden).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1385737</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1385737</guid><dc:creator><![CDATA[rüdiger]]></dc:creator><pubDate>Mon, 15 Oct 2007 15:30:18 GMT</pubDate></item><item><title><![CDATA[Reply to Fortran Anfängerproblem on Mon, 15 Oct 2007 15:30:46 GMT]]></title><description><![CDATA[<pre><code>program test
    implicit none
    write(*,*) 'hallo welt'
end program test
</code></pre>
<p>so? das bringt auch nix.</p>
<p>hier nochmal die genaue Fehlermeldung:</p>
<p>program test<br />
1<br />
Error: Non-numeric character in statement label at (1)<br />
In file test1.f:1</p>
<p>program test<br />
1<br />
Error: Unclassifiable statement at (1)<br />
In file test1.f:4</p>
<p>end program test<br />
1<br />
Error: Non-numeric charakter in statement label at (1)<br />
In file test1.f:4</p>
<p>end program test<br />
1<br />
Error: Unclassifiable statement at (1)<br />
Error: Unexpected end of file in 'test1.f'</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1385744</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1385744</guid><dc:creator><![CDATA[walljumper]]></dc:creator><pubDate>Mon, 15 Oct 2007 15:30:46 GMT</pubDate></item><item><title><![CDATA[Reply to Fortran Anfängerproblem on Mon, 15 Oct 2007 15:32:57 GMT]]></title><description><![CDATA[<p>auch program test und end program test musst du einrücken. Wie gesagt, nur numerische Labels und Kommentare dürfen AFAIR am Zeilenanfang stehen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1385746</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1385746</guid><dc:creator><![CDATA[rüdiger]]></dc:creator><pubDate>Mon, 15 Oct 2007 15:32:57 GMT</pubDate></item><item><title><![CDATA[Reply to Fortran Anfängerproblem on Mon, 15 Oct 2007 15:41:44 GMT]]></title><description><![CDATA[<p>ja du hast recht danke.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1385754</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1385754</guid><dc:creator><![CDATA[walljumper]]></dc:creator><pubDate>Mon, 15 Oct 2007 15:41:44 GMT</pubDate></item></channel></rss>