User Profile

Collapse

Profile Sidebar

Collapse
mfshake
mfshake
Last Activity: May 2 '08, 11:55 PM
Joined: Nov 6 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • mfshake
    started a topic help on selection sort
    in Java

    help on selection sort

    i am using only a driver and not a server. I know how to do selection sort for ints but can't figure out how to do it for Strings. I want to sort it my first letter only Here is my code that i started:

    private static void selectionSort(S tring [] a)
    {
    String [] array = a;
    int min, temp;

    for (int index = 0; index < a.length - 1; index++)
    {
    ...
    See more | Go to post

  • mfshake
    started a topic How to use String methods
    in Java

    How to use String methods

    I have a driver and server and i can't figure out how to print the # of characters for each input they enter
    I need help on figuring out how to alphabetize the user inputs
    Someone plz help me
    thanks

    THIS IS SERVER.

    import java.util.Scann er;

    public class AlphabetizePara puzha {

    static Scanner reader = new Scanner (System.in);
    private String [] names = new...
    See more | Go to post

  • mfshake
    started a topic explaination on polymorphism
    in Java

    explaination on polymorphism

    i need help on understanding super class, keyword extend and implements, and how to write code using interface and subclasses?

    thank you
    See more | Go to post

  • mfshake
    started a topic How to import a sound to a java program
    in Java

    How to import a sound to a java program

    i trying to import a song that i already saved to my program
    does anybody know how do that? I tried but i need help on starting the program and importing the song
    See more | Go to post

  • mfshake
    replied to help on array searching
    in Java
    never mind i figured it out...
    See more | Go to post

    Leave a comment:


  • mfshake
    replied to help on array searching
    in Java
    So when i put data in my array when i choose option 1, how can i access that data and print it out. I didn't get your explanation....
    See more | Go to post

    Leave a comment:


  • mfshake
    started a topic help on array searching
    in Java

    help on array searching

    I am try to make the user enter name and password then ask them if they want to search. The menu has the options and i am having trouble with the search method. Here's my server:

    [CODE=java]import java.util.Scann er;

    public class StudentPassword {

    static Scanner reader = new Scanner (System.in);
    private int option;//the user option
    private int count = 0;//the count
    private String...
    See more | Go to post
    Last edited by Ganon11; Feb 16 '08, 04:48 PM. Reason: Please use the [CODE] tags provided.

  • mfshake
    replied to Help with String array program
    in Java
    [CODE=Java]
    Scanner reader = new Scanner (System.in);
    String [] names = new String [10];
    int count = 0;

    while(count < names.length){
    System.out.prin t("Enter your name: ");
    String name = reader.nextLine ();
    names[count] = name;
    count++;
    }//close while

    System.out.prin t("\nHere are the...
    See more | Go to post

    Leave a comment:


  • mfshake
    replied to Help with String array program
    in Java
    Help with array


    it says i have a negative value after my progam finishes...
    See more | Go to post
    Last edited by mfshake; Jan 29 '08, 09:20 PM. Reason: fixed my code

    Leave a comment:


  • mfshake
    started a topic Help with String array program
    in Java

    Help with String array program

    I am try to make the user enter 10 names and then display them out in
    reverse order. I am having trouble with my for statement. can someone help me. Thanks


    [CODE=java] Scanner reader = new Scanner (System.in);
    String [] names = new String [10];
    int count = 0;
    while(count < names.length){
    System.out.prin t("Enter your name: ");
    String...
    See more | Go to post
    Last edited by Ganon11; Jan 29 '08, 01:31 AM. Reason: Please use the [CODE] tags provided.

  • mfshake
    replied to How to print screen shots
    in Java
    i am in a java class and i don't want to take notes
    i use Jcreator and it would be easier that way
    so can u help me in any?
    thanks...
    See more | Go to post

    Leave a comment:


  • mfshake
    started a topic How to print screen shots
    in Java

    How to print screen shots

    i need help on trying to print screen shots and put them on powerpoint with a timer. I tried to used the robot package and i couldn't get it to work. Can someone help me get started on this program.
    Thank you
    See more | Go to post

  • mfshake
    replied to How to Make GUI's
    in Java
    thanks for the website...
    See more | Go to post

    Leave a comment:


  • mfshake
    started a topic How to Make GUI's
    in Java

    How to Make GUI's

    i just started learning java and want to learn how to make GUI's with a client and server.
    See more | Go to post

  • mfshake
    replied to Help on tripatches
    in Java
    yea i just need to make a user enter a balance and then make them withdraw or depoist
    if they over withdraw the balance, how do i ask them to insert a smaller numer?...
    See more | Go to post

    Leave a comment:


  • mfshake
    started a topic Help on tripatches
    in Java

    Help on tripatches

    What are tripatches?
    i am seeing if i can do one on my program
    i have to make a user enter a balance and then make them withdraw or depoist
    if they over withdraw the balance, how do i ask them to insert a smaller numer?


    thanks
    See more | Go to post
No activity results to display
Show More
Working...