This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Spaceship { | |
public int people = 10; // the amount of people living on the ship | |
public int food = 100; // the amount of food the people can use for surviving | |
public int fuel = 100; // how much fuel is left for flying | |
public double[] cord = new double[2]; // coordinates of the ship - X,Y | |
public double[] course = new double[2]; // coordinates of the flying target - X,Y | |
public static void main(String[] args) { | |
Spaceship traumschiffSurprise = new Spaceship(5.0, 4.0, 9.0, 9.0); | |
int i = 1; |