Часовой механизм - PullRequest
       14

Часовой механизм

0 голосов
/ 18 ноября 2018

Я пытался создать калькулятор часовых поясов, и у меня проблемы с переходом от 0 до 24 часов и наоборот.Вот мой код:

import java.util.Scanner; //this is for something else in the main method
import java.time.Clock;

public class TmzCalc extends Thread
{

public static void main(String args[])
{
//skipping some useless code
TmzCalc.hst(int hr); //the integer is declared inside main, and used by the 
hst method
}

public static void hst(int hr)
{
int x = hr - 10;
if(hr < 0){
   hr = 24;
};
     System.out.println("Honolulu-HST :: " + x);
}

Теперь вот проблема: если я скажу, что час равен 2, то он напечатает -8, что я на самом деле хочу, чтобы это было 16. Спасибо всем заранее!

...