TP-programmation-orientee-o.../TP14/Carburant.java
2023-06-20 21:02:09 +02:00

13 lines
105 B
Java

/**
* Les carburants possibles.
*/
public enum Carburant {
GAZOLE,
SP95,
E85,
GPLc,
E10,
SP98
}