This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Aplicacao { | |
public static void main(String[] args) { | |
Relogio r1 = new Relogio(); | |
r1.acertarRelogio(3, 25, 50); | |
System.out.println("Posicao da hora: " + r1.ponteiroHora.posicao); |
NewerOlder