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
~554 People Reached
Favorite Forums
Favorite Tags
java x 8
Member Avatar for NickT80

I am to create a superclass that has at least two data fields, a constructor and two other methods. Create two subclasses that inherit from the superclass each one of which adds at least one more field and at least one more method, one of which must be an 'over-riding' …

Member Avatar for javaAddict
0
74
Member Avatar for NickT80

I have a project that needs to take an int "rating" and a string "title" and sort the list by rating then title. Needs major help. this is all i have so far. [CODE]public class Movie { private int rank; private String title; public Movie(int rank, String title) { this.rank …

Member Avatar for javaAddict
-1
83
Member Avatar for NickT80

I have a project where I want to combine 2 different arrays and then be able to sort them with either the int or string values. This is what I have so far. int [] myRatingList = { 5, 2, 4, 3, 1 }; String [] myTitleList = {"Top Gun" …

Member Avatar for gunjannigam
0
116
Member Avatar for NickT80

I have a project that needs to take an int "rating" and a string "title" and sort the list by rating then title. Needs major help. this is all i have so far. [CODE]public class Movie { private int rank; private String title; public Movie(int rank, String title) { this.rank …

-1
57
Member Avatar for NickT80

I have this simple project that I'm sure has come throught here before. I am take input from a user using JOptionPane, make sure it is >15 Chars, and count the uppercase. Here is what I have so far. I am having trouble setting the first loop correctly. [CODE] import …

Member Avatar for MxDev
0
130
Member Avatar for NickT80

I need to write a program that takes in an input using JOptionPane and make sure it is more than 15 characters, then count the number of uppercases in the phrase. Please help desperate student.

Member Avatar for imclumsy
0
94