Programmation orientée objet TP no 1 : Mise en route

javac -version
java -version
java/tp poo/tp
java/tp/tp1/exo1/HelloWorld.java
HelloWorld.java
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
javac HelloWorld.java
HelloWorld java HelloWorld
Moyenne.java Moyenne
class Moyenne {
int notes = 0;
int nombreDeNotes = 0;
void ajouteNote(int note) {
notes += note;
nombreDeNotes += 1;
}
double calculMoyenne() {
return ((double)notes) / nombreDeNotes;
}
}
(double)
main Moyenne
TestMoyenne
System.out.println
System.out.print
System.out.printf
printf C
Scanner
Scanner sc = new Scanner(System.in);
int i = sc.nextInt();
import java.util.Scanner;
Scanner TestMoyenne
main
Scanner hasNextInt true
false
next
ComplexeCartesien ComplexePolaire
module()
c1 c2 ComplexeCartesien
i c1 c2
==
boolean egalA(ComplexeCartesien c)
Temps String convertir(int secondes)
t.convertir(4567) "1h 16mn 7s"
Temps
Timestamp
initialiser(long secondes)
String getDate()
long getTimestamp(int jour, int mois, int annee, int
heures, int minutes, int secondes)
Timestamp t = new Timestamp();
t.initialiser(1473839100L);
System.out.println(t.getDate());
// affiche 14/9/2016 7h45m0s UTC
System.out.println(t.getTimestamp(14, 9, 2016, 7, 45, 0);
// affiche 1473839100
1 / 3 100%
La catégorie de ce document est-elle correcte?
Merci pour votre participation!

Faire une suggestion

Avez-vous trouvé des erreurs dans linterface ou les textes ? Ou savez-vous comment améliorer linterface utilisateur de StudyLib ? Nhésitez pas à envoyer vos suggestions. Cest très important pour nous !