home *** CD-ROM | disk | FTP | other *** search
- class Televisore {
-
- int volume = 10;
-
- void alzaVolume(int v){
- System.out.println("(Alziamo il volume)");
- volume = volume + v;
- }
-
- void abbassaVolume(int v){
- System.out.println("(Abbassiamo il volume)");
- volume = volume - v;
- }
-
- void ascolta() {
-
- if (volume <= 0)
- System.out.println("...");
- else if (volume <= 10)
- System.out.println("blah, blah, blah...");
- else
- System.out.println("BLAH, BLAH, BLAH...");
- }
- }
-
-