YEAR? i cant make... moving robots,wireless devices,.
i short i have less time ... to make a uncommon project
i am a electronic instrumentation & control student ...
refer me according to my stream
this is what i have to sort grades...
public static void sortSelection(int grades[]){
for (int i = 0; i < grades.length -1; i++){
int largest = i;
for (int c = largest + 1; c < grades.length; c++)
if (grades[c]> grades[largest]) largest = c;
int temp = grades[largest];
grades[largest]=...
I need to write a java program using net beans that will make a method that will ask the user to enter names and grades.
(input will be something like: joe 94 mary 89 johnny 78)
I need to be able to put the information that the user enters into an array. Then I need to check right then if the...