Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~1K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

5 Posted Topics

Member Avatar for kesh1000

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; } } …

Member Avatar for chaospie
0
242
Member Avatar for coderGh

revise your post and put your code inside the (code) brackets availiable. it will help with clarity.

Member Avatar for coderGh
0
83
Member Avatar for MaxWildly

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 …

Member Avatar for gunjannigam
0
206
Member Avatar for memo1

[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.

Member Avatar for MaxWildly
0
92
Member Avatar for MaxWildly

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[] …

Member Avatar for MaxWildly
0
665

The End.