IGPI__Controle2
IGPI__Controle2
IGPI__Controle2
Durée
Niveau : 2éme année 2 Heure
:
Unité de
IGPI
Formation :
Formateur : Mr Saïd Bourahma Page 1/1
CONTROLE N2
CONTROLE N2
btn_Afficher.setOn....................
{
Toast.makeText(this@MonActivity,..............................,...
................).show();
}
CONTROLE N2
29. android:layout_alignTop="@id/btnLogin"
30. android:layout_toRightOf="@id/btnLogin"
31. android:text="@string/Annuler"/>
32.
33. <Button
34. android:layout_width="wrap_content"
35. android:layout_height="wrap_content"
36. android:layout_alignParentBottom="true"
37. android:layout_centerHorizontal="true"
38. android:text="@string/Retour"/>
</RelativeLayout>
Voici le texte d’une classe représentant de façon sommaire un compte bancaire et les
opérations bancaires courantes :
class Compte{
var solde : Int=0
fun deposer(var montant : Int){ solde = solde + montant }
fun retirer(var montant : Int){ solde = solde -montant }
fun virerVers(var montant : Int, var destination : Compte)
{ this.retirer(montant)
destination.deposer(montant)
}
fun afficher(){}
}
CONTROLE N2