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.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
java x 7
Member Avatar for ricss_madara

how to write an application that reads in a five digit integers and determine whether the number is as palindromes or not e.g 12321,11611.If the number is not five digit long, display an error dialog, allow the user to enter a new value.

Member Avatar for jwenting
0
109
Member Avatar for ricss_madara

class bubbleSort1{ public static void bubbleSort(int[] x) { int n = x.length; for (int pass=1; pass < n; pass++) { // count how many times // This next loop becomes shorter and shorter for (int i=0; i < n-pass; i++) { if (x[i] > x[i+1]) { // exchange elements int …

Member Avatar for mayur_kulkarni
0
89
Member Avatar for ricss_madara

what java code for output repeated continuously by requesting the user to input data&number?

Member Avatar for sciwizeh
0
232
Member Avatar for ricss_madara

main manu 1 for Addition 2 for Subtraction 3 for Multiplication 4 for Division 5 for Choice not in list

Member Avatar for javaAddict
0
99
Member Avatar for ricss_madara

investment duration interest rates offered Less then 3 months 5% 3month-11 months 5.5% 1 year-23 months 7.6% 2 years and above 7.9% Note: Interest = Total investment *Interest rates *Duration Q: How to write a java application to compute the total accumulated investment after the investment periods?

Member Avatar for jasimp
0
142
Member Avatar for ricss_madara

how to write application that calculate squares and cube of the number from 0 to 10 and output in table. the program does not require any input from user?

Member Avatar for bloody_ninja
0
989