/**
Beispiel einer einfachen Klasse.<br>
Das Programm liefert folgende Ausgabe:
<hr size=5 width="100%">
<blockquote>
<pre>
Moechten Sie die Zahlenwerte sehen?
Die Antwort ist (J/N) : J
f1 = 1234000.0
lg1= 4321567
</pre>
</blockquote>
<hr size=5 width="100%">
*/
/*-----------------------------------------------------------------------*/

public class EinfacheKlasse                       
{   public static void main(String[] argv)
   {  float f1=12.34e5F;
      long lg1=4321567;
      char Ch='J';
      String s="Moechten Sie die Zahlenwerte sehen? ";
      System.out.println(s);
      System.out.println("Die Antwort ist (J/N) : "+Ch);
      System.out.println("f1 = "+f1);
      System.out.println("lg1= "+lg1);
   }
}
