Search:

Type: Posts; User: jhnhskll

Search: Search took 0.07 seconds.

  1. Re: Extremely basic -- help with multiple arguments

    Ohhh I totally get it now. Code working as intended! Thanks for the help!
  2. Re: Extremely basic -- help with multiple arguments

    Well, I haven't quite gotten it yet. I need some way to count the vowels in each argument separately.
  3. Re: Extremely basic -- help with multiple arguments

    Thanks for the help guys! Here's what I'm working with now:


    package main;

    public class Assignment1 {

    public static void main(String args[]) {
    int numA = 0;
    int numE = 0;
  4. Re: Extremely basic -- help with multiple arguments

    I was thinking something like this, but how can the program know to use all of the arguments (be it 2 or 5000)?
  5. Extremely basic -- help with multiple arguments

    Hello all.

    So my first assignment in my computer science class is to write a program that counts the number of vowels. Basically, running
    java main.Assignment1 "This is one argument" "A second...
Results 1 to 5 of 5