Το παρακάτω πρόγραμμα μετατρέπει ταχύτητες από km/h σε m/s:
import gr.aueb.dds.BIO;
// Convert speed from km/h into m/s
class SpeedConvert {
public static void main(String args[]) {
double kmh_speed;
BIO.print("Enter speed in km/h: ");
kmh_speed = BIO.readDouble();
BIO.print("The speed is ");
BIO.print(kmh_speed * 1000 / 60 / 60);
BIO.println(" m/s");
}
}