Hej Henrik,
public class TimeConvert {
public static void main (String[] args) {
int tid;
if (args.length > 0) { // check that there is an argument
tid = Integer.parseInt(args[0]);
System.out.println("No argument");
}
int h = tid / 60;
int m = tid % 60;
System.out.println("H: " + h + " M: " + m);
}
}
Med venlig hilsen
Ieet
Indlæg senest redigeret d. 21.04.2008 10:26 af Bruger #12836