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
Ranked #55.0K
~641 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
2 Posted Topics
i'm trying to enter a string phrase and store its last word in an Array, if the word is palindrom then a message will showit
public static String DecBin(int nbr) String resultat=""; String decbin=""; //String temp; int rest; //temp=""; while(n/2>0) { rest=n%2; //temp=temprest; String rest1=Integer.toString(rest); resultat=resultat+rest1; } for (int i=resultat.length();i<resultat.length()-1;i--) decbin=String.valueOf(resultat.charAt(i)); return resultat;
The End.
mahabelg