Home of Gamehacking - Archiv
Java Musterlösung - Druckversion

+- Home of Gamehacking - Archiv (http://archiv-homeofgamehacking.de)
+-- Forum: Coding (http://archiv-homeofgamehacking.de/forumdisplay.php?fid=15)
+--- Forum: C, C#, C++, Visual C++ (http://archiv-homeofgamehacking.de/forumdisplay.php?fid=18)
+--- Thema: Java Musterlösung (/showthread.php?tid=788)



Java Musterlösung - xXGodfatherXx - 16.12.2011

Folgendes Problem: Schreibe am Dienstag die erst Informatikklausur, um zu üben haben wir eine Aufgabe bekommen. Diese seht ihr auf dem Bild hier:

http://s7.directupload.net/file/d/2740/s9wvysw7_jpg.htm

Weil Java eher C++ etc ähnelt habe ich das Thema hier erstellt.
Dies hier ist der Code den ich bisher auf die Reihe bekommen habe.Ich hoffe, jemand kann mir dafür eine Musterlösung geben oder mir zu einer verhelfen, was noch besser wäre


Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
public class Bildschirm
   {
    
    private int xAufloesung;
    private int yAufloesung;
    private int Bildpunkte;
    private int anzahlBildpunkte;
    /**
     * 
     */
    public Bildschirm(int xAufloesung, int xyAufloesung)
    {
        
        this.xAufloesung = xAufloesung;
        this.yAufloesung = yAufloesung;
        
    }

    /**        
     * 
     */
    public int anzahlBildpunkte()
    {
       anzahlBildpunkte = xAufloesung + yAufloesung;
       return anzahlBildpunkte;
    }
    public void loeschen (boolean invertieren)
    {
        
}
   
    }
}