/** Grundlagen der Informatik<BR>
 *  Einsatz von Variablen/Lesen ohne Zuweisung
 */
public class TryIt2 {
    public static void main(String args[]) {

        double x, y;

        y = x * 2.5d;   // Was passiert hier???

        System.out.println(y);

    }

}  // TryIt2
