Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
calc
import java.util.Calendar; class Rextester { public static void main(String args[]) { calc( have, need ); } public static void calc(int have, int need){ Calendar now = Calendar.getInstance(); int gio, phut, gioNow, phutNow; gio = need / have / 12 / 60; phut = (need / have / 12) % 60; gioNow = now.get(Calendar.HOUR_OF_DAY) % 12 ; if(gioNow < 7) gioNow = gioNow + 5; else gioNow = gioNow - 7; phutNow = now.get(Calendar.MINUTE); System.out.println("Cần: " + gio + " giờ, " + phut + " phút"); System.out.println("Xong: " + (gioNow + gio) + " giờ, " + (phutNow + phut) + " phút"); } }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Inheritance
[JAVA] Cool thing about iterating a map with iterator.
1st
Qu1java.java
Compare Version Numbers
Java Object Graph Dumper (iterative)
3f
Strings with same letters with reps
java polymorhism
Basic
Please log in to post a comment.