Jump to content

Πρόβλημα με java


AntonisPsar
 Κοινοποίηση

Recommended Posts

Παιδιά καλησπέρα, τις τελευταίες μέρες άρχισα να διαβάζω από ένα βιβλίο για να μάθω την εν λόγο γλώσσα προγραμματισμού αλλά το πρόβλημα που συναντάω είναι ότι όταν φτιάξω ένα πρόγραμμα (συγκεκριμένα αυτό που έχει στο βιβλίο) όταν το μεταγλωτίσω και πάω να το τρέξω ανοίγει ένα παράθυρο(προφανώς γράφει αυτά που του λέω να γραφει) και κλείνει αμέσως. Πώς θα κάνω το παράθυρο να μην κλείνει μόλις τελειώσει το πρόγραμμα?
Link to comment
Share on other sites

Το πρόγραμμά σου τελειώνει με κάτι τέτοιο: System.out.println("mpla mpla");

 

Για ανέβασε τον κώδικα να τον δούμε...

http://www.myphone.gr/gallery/data/500/ZXRFlame.jpg
Link to comment
Share on other sites

class VolcanoRobot {

String status;

int speed;

float temperature;

 

void checkTemperature() {

if (temperature > 660) {

status = "returning home";

speed = 5;

}

}

 

void showAttribute() {

System.out.println("Status: " + status);

System.out.println("Speed: " + speed);

System.out.println("Temperature: " + temperature);

}

}

 

class VolcanoApplication {

public static void main(String[] arguments) {

VolcanoRobot dante=new VolcanoRobot();

dante. status = "exploring";

dante. speed = 3;

dante. temperature = 510;

 

dante. showAttribute();

System.out.println("Increasing speed to 3.");

dante. speed = 3;

dante. showAttribute();

System.out.println("Changing temperature to 670.");

dante. temperature = 670;

dante. showAttribute();

System.out.println("Checking the temperature");

dante. checkTemperature();

dante. showAttribute();

}

}

 

 

auto einai to programma.

Link to comment
Share on other sites

Έτρεξα τον κώδικα και το παράθυρο παρέμεινε όπως βλέπεις και στο screenshot.

 

Πώς ακριβώς τρέχεις το πρόγραμμά σου? Και μια ακόμα ερώτηση. Τί πρόγραμμα χρησιμοποιείς για να γράφεις τον κώδικά σου?

http://www.myphone.gr/gallery/data/500/ZXRFlame.jpg
Link to comment
Share on other sites

to programma pou xrisimopoio einai to netbeans. to programma den mporo na to anoikso. apla pao ekei pou apothikeuei to programma kai tou patao anoikse me kai bazo to programma tis java.
Link to comment
Share on other sites

to programma pou xrisimopoio einai to netbeans. to programma den mporo na to anoikso. apla pao ekei pou apothikeuei to programma kai tou patao anoikse me kai bazo to programma tis java.

 

Νομίζω ότι πας Αθήνα-Θεσσαλονίκη μέσω... Πάτρας! Λοιπόν...

 

Ανοίγεις το NetBeans. Πας File-> New Project. Επιλέγεις Java Application. Δίνεις ένα όνομα στο project σου πχ VolcanoApplication. Ξε-τσεκάρισε την επιλογή "Create main class".

 

Κάτω από το VolcanoApplication στα αριστερά βλέπεις το Source Packages. Κάνεις expand το Source Packages και δεξί κλικ πάνω στο default package όπου επιλέγεις New->Java Class. Την κλάση την ονομάζεις πχ VolcanoRobot. Κάνεις επικόλληση τον κωδικά σου.

 

Αν πατήσεις F11 (ή αν πας στο Run->Build Main Project) φτιάχνεις το εκτελέσιμο αρχείο σου. Αν τώρα πατήσεις F6 (ή αν πας στο Run->Run Main Project) τρέχεις το πρόγραμμά σου. Ότι αλλαγή κι αν κάνεις από δω και πέρα στο πρόγραμμά σου απλά πατάς το F6 και δοκιμάζεις.

 

Στο screenshot θα δεις τα όσα σου γράφω.

http://www.myphone.gr/gallery/data/500/ZXRFlame.jpg
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Επισκέπτης
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Κοινοποίηση

×
×
  • Create New...