Search:

Type: Posts; User: Leklur

Search: Search took 0.08 seconds.

  1. [SOLVED] Re: Debugging homework assignment/ questions surrounding partially filled arrays

    Your array length is set to 15, but you have 19 values?
  2. Re: Help With GUI, TroubleShooting Retail Price Calculator.

    It looks to me that you've been using the WindowBuilder plug-in for Eclipse or NetBeans.
  3. Replies
    3
    Views
    2,082

    Re: How do you say 'will you marry me? In Java?

    Sorry for the late reply, but here's the easiest way to do it. I don't have much time right now, as i'm in class, so I had to make this short.




    class Marry{
    public static void main(String...
  4. Replies
    9
    Views
    768

    Re: why wony my label show on gui

    Personally, I don't like using JLabels in the format you used. I would normally use them like this

    JFrame frame = new JFrame();
    frame.set(new JLabel("Hi"));

    but to make the format you used...
  5. Replies
    4
    Views
    633

    Re: java programming

    I went ahead and spent about 5 minutes making this quick example for you. I used an ArrayList.

    For this example, I used Adam Sandler(actor) and gave him two random roles(CIA Agent, and Police...
  6. Replies
    3
    Views
    1,372

    Re: Help With Filters Java Programming

    What do you mean by filter? I would use if-then statements from what you're making the program
  7. Replies
    2
    Views
    944

    Re: Simple input value from user

    You didn't create a scanner. Try this

    import java.util.Scanner;

    public class Main {
    public static void main(String []args){


    Scanner scanner = new Scanner(System.in);...
Results 1 to 7 of 7