Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
Reloj
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Rebecca Arzamendia
Reloj
Commits
d046da21
Commit
d046da21
authored
Apr 28, 2022
by
Rebecca Arzamendia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial commit
parents
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
136 additions
and
0 deletions
+136
-0
README.md
+13
-0
reloj.java
+123
-0
No files found.
README.md
0 → 100644
View file @
d046da21
Reloj by Rebecca
Muestra la hora,minutos y segundos
Para compilar el archivo, dentro de la ventana de consola ya sea CMD para Windows o Terminal para Ubuntu, se debe ejecutar el siguiente comando:
javac reloj.java
Luego para ejecutar se debe cargar el siguiente comando en la consola
java reloj
De esta forma ya se debería de ejecutar el programa.
\ No newline at end of file
reloj.java
0 → 100644
View file @
d046da21
public
class
reloj
{
int
hora
;
int
minutos
;
int
segundos
;
public
reloj
(){
hora
=
12
;
minutos
=
0
;
segundos
=
0
;
}
public
reloj
(
int
h
,
int
m
,
int
s
){
hora
=
h
;
minutos
=
m
;
segundos
=
s
;
}
public
reloj
(
int
sm
){
hora
=
3
;
minutos
=
200
;
segundos
=
12000
;
}
public
Setreloj
(
int
smd
){
hora
=
3
;
minutos
=
200
;
segundos
=
12000
;
}
int
gethora
(){
return
hora
;
}
public
void
sethoras
(
int
horas
){
this
.
horas
=
horas
;
}
public
int
getminutos
(){
return
minutos
;
}
public
void
setminutos
(
int
minutos
){
this
.
minutos
=
minutos
;
}
public
int
getsegundos
(){
return
segundos
;
}
public
void
setsegundos
(
int
segundos
){
this
.
segundos
=
segundos
;
}
public
void
metodotick
(){
segundos
++;
if
(
segundos
==
59
){
segundos
=+
1
;
minutos
++;
}
if
(
minutos
==
59
){
minutos
=
0
;
hora
=(
hora
+
1
)%
23
;
}
}
public
void
AddReloj
(
reloj
relojParametro
){
hora
=
this
.
hora
+
relojParametro
.
hora
;
minutos
=
this
.
minutos
+
relojParametro
.
minutos
;
segundos
=
this
.
segundos
+
relojParametro
.
segundos
;
}
public
String
toString
(){
return
""
+
hora
+
":"
+
minutos
+
":"
+
segundos
;
}
public
void
tickdecrement
(){
segundos
++;
if
(
segundos
==
59
){
segundos
=-
1
;
minutos
++;
if
(
minutos
==
59
){
minutos
=
0
;
hora
=(
hora
+
1
)%
23
;
}
}
}
}
public
static
void
main
(
String
[]
args
)
{
reloj
relojdemo
=
new
reloj
();
System
.
out
.
println
(
relojdemo
.
toString
());
// aca se pide que ingrese
System
.
out
.
println
(
"Ingrese los segundos"
);
int
ingresado
=
10
;
relojdemo
.
Setreloj
(
ingresado
);
reloj
relojdemo2
=
new
reloj
(
1
,
43
,
50
);
relojdemo
.
metodotick
();
System
.
out
.
println
(
"La hora es"
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment