Advertisement
Guest User

LUCAs

a guest
Nov 22nd, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package fr.btssnir;
  7.  
  8. import javax.swing.text.Segment;
  9. import clavier.In;
  10. /**
  11. *
  12. * @author fhubert
  13. */
  14. public class IHM {
  15.  
  16. public static void main (String [] serhsrtyh){
  17.  
  18.  
  19. Afficheur7Segments seg = new Afficheur7Segments();
  20.  
  21. while(1 != 0){
  22. seg.initialiseOuvrirLiaisonSerieLCD();
  23. seg.ecrireliaisonserieLCD(In.readString().getBytes());
  24. seg.fermerliaisonserie();
  25. }
  26.  
  27. }
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement