No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Maybe this will help. [CODE] public static void Sort(int d[]){ int next; int temp; int index; for(index = 0; index < d.length - 1; index++){ for(next = 0; next < d.length - 1; next++){ if( d[next] > d[next+1] ){ temp = d[next]; d[next] = d[next+1]; d[next+1] = temp; } } …
revise your post and put your code inside the (code) brackets availiable. it will help with clarity.
I am not getting the correct output for this method. I have looked at the BigInteger class, and even tried to implement, after rewriting for my instance variable, but it did not carry the numbers over to the next digit, or bring down the remainders. Thanks in advance. [CODE] public …
[QUOTE=memo1;1164233]HI could any one help me to know the main idea to type program which converted from seconds to hours, minutes and seconds. thnks،،[/QUOTE] You could write a method that convert the seconds hours using a loop, and the same for minutes to seconds.
I need help with trying to convert a String of number to a Integer Array. I will then be adding the to Arrays together like any addition problem, but I am having trouble with just getting the string in to the arrays without it outputting jargon. [CODE] public static int[] …
The End.
MaxWildly