Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
1
0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
java x 16
Member Avatar for AbdullahJava

How can i make the words in alphabetical order if there are not the same ??? [CODE]import java.util.Scanner; public class Alphabetize{ public static void main (String [] args) { Scanner input = new Scanner (System.in); System.out.println("Enter three words"); String Word1, Word2, Word3; Word1 = input.next(); Word2 = input.next(); Word3 = …

Member Avatar for stultuske
0
146
Member Avatar for AbdullahJava

guys please i need help what method do i need to use for the alphabetical order Is it indexOf if yes how can i use it Problem 2: Alphabetize Three Words Program Name: Alphabetize.java Write a program to take three words as input then output those three words in alphabetical …

Member Avatar for NormR1
0
2K
Member Avatar for AbdullahJava

I don't know why it doesn't compile ! ! [CODE] import java.util.Scanner; public class Beach { public static void main (String [] args) { Scanner input = new Scanner (System.in); System.out.println("Enter the weather Hot or Cold"); String A; A = input.next(); System.out.println("Enter the type of day Sunny or Windy or …

Member Avatar for Philippe.Lahaie
0
83
Member Avatar for AbdullahJava

Hi guys Please i need help ? Maxint: Write a program that gets two integers from the user and prints out the maximum value in a nice sentence beginning “The max is: “ [CODE] public class Maxint { public static void main (String [] args) { System.out.println("Enter two integers"); double …

Member Avatar for jackbauer24
-1
180