Method called wordlengths that accepts a scanner

Assignment Help JAVA Programming
Reference no: EM13161169

Write a method called wordLengths that accepts a Scanner representing an input file as its argument. Your method should read from the given file, count the number of letters in each token in the file, and output a result diagram of how many words contain each number of letters. Use tabs before the asterisks so that they'll line up. If there are no words of a given length, omit that line from the output.

For example, if the file contains the following text:

Before sorting:
13 23 480 -18 75
hello how are you feeling today

After sorting:
-18 13 23 75 480
are feeling hello how today you

your method should produce the following output to the console:

2: 6    ******
3: 10   **********
5: 5    *****
6: 1    *
7: 2    **
8: 2    **

You may assume that no token in the file is more than 80 characters in length.

My Code:

public class WordLengths {

WordLengths() {}
  
public static void wordLengths(Scanner scan) {
int[] lengthCountArray = new int[100];
for(int i = 0; i < 100; ++i) {
lengthCountArray[i] = 0;
}
while(scan.hasNextLine()) {
String line = scan.nextLine();
String[] words = line.split("\\s+");
for(int i = 0; i < words.length; ++i) {
int length = words[i].length();
++lengthCountArray[length];
}
}
for(int i = 1; i <= 80; ++i) {
if(lengthCountArray[i] > 0) {
System.out.print(i + ": " + lengthCountArray[i] + "\t");
for(int j = 1; j <= lengthCountArray[i]; ++j) {
System.out.print("*");
}
System.out.println("");
}
}
}
  
public static (String[] args) throws FileNotFoundException {
// say input filename is "input.txt";
String filename = "input.txt";
Scanner scan = new Scanner(new File(filename));
//WordLengths.wordLengths(scan);
}
}

Errors:

Your code did not compile. Please read and correct the errors below.

  • Line 29

    You have an illegal description of a data type here. Sometimes this happens when you misuse the syntax for generic types.

    illegal start of type

    public static (String[] args) throws FileNotFoundException { ^

  • Line 29

    You may have forgotten to end a statement with a semicolon. Each Java statement must end with a semicolon.

    ';' expected

    public static (String[] args) throws FileNotFoundException { ^

  • Line 29

    You have an illegal description of a data type here. Sometimes this happens when you misuse the syntax for generic types.

    illegal start of type

    public static (String[] args) throws FileNotFoundException { ^

  • Line 29

    You may have forgotten to type an identifier here, such as a variable's name or type.

    <identifier> expected

    public static (String[] args) throws FileNotFoundException { ^

  • Line 29

    You may have forgotten to end a statement with a semicolon. Each Java statement must end with a semicolon.

    ';' expected

    public static (String[] args) throws FileNotFoundException { ^

  • Line 29

    You have an illegal description of a data type here. Sometimes this happens when you misuse the syntax for generic types.

    illegal start of type

    public static (String[] args) throws FileNotFoundException { ^

  • Line 29

    You may have forgotten to type an identifier here, such as a variable's name or type.

    <identifier> expected

    public static (String[] args) throws FileNotFoundException { ^

  • Line 29

    You may have forgotten to end a statement with a semicolon. Each Java statement must end with a semicolon.

    ';' expected

    public static (String[] args) throws FileNotFoundException { ^ 8 errors

Reference no: EM13161169

Questions Cloud

Compute average memory access time : Compute Average Memory Access Time under a variety of memory system configurations and workload assumptions
State what is the frequency of light : A red laser pointer emits light with a wavelength of 660. What is the frequency of this light? 2.What is the energy of one of these photons?
How can predator populations function as agents : How can predator populations function as agents of natural selection in prey populations? How can prey populations function as agents of natural selection in predator populations?
The arm assembly language routine : For the ARM assembly language routine below, what function does it perform for the calling program?
Method called wordlengths that accepts a scanner : Write a method called wordLengths that accepts a Scanner representing an input file as its argument. Your method should read from the given file.
Method named isallvowels that returns : Write a method named isAllVowels that returns whether a String consists entirely of vowels (a, e, i, o, or u, case-insensitively). If every character of the String is a vowel, your method should return true. If any character of the String is a non-vo..
Multidimensional arrays : multidimensional arrays to life, let's consider a specific example: How can you visualize a 4-dimensional array? How can you give meaning to each dimension this array has? What kind of application would such an array be useful for?
What is the energy required to move a mole of urea out : What is the energy required to move a mole of urea out of the kidney cells and into the urine?
What is the minimal total weight of cylinders : A scuba diver uses a special equipment for diving. He has a cylinder with two containers: one with oxygen and the other with nitrogen. Depending on the time he wants to stay under water and the depth of diving the scuba diver needs various amount of ..

Reviews

Write a Review

JAVA Programming Questions & Answers

  Create a driver class in java

Your project is to create a driver class that uses SuperJavaIceCreamClass.

  Write program in java-calculate and display mortgage payment

Write the program in Java (with a graphical user interface) and have it calculate and display the mortgage payment amount from user input of the amount of the mortgage.

  Implement security so that all users can view the informatio

Implement security so that all users can view the information about the projects, but only authenticated users

  Insert uml design diagrams, use case, classes

Insert UML design diagrams here (use case, class, and sequence diagram).

  Develop java applet that will help elementary school student

Develop a Java applet that will help an elementary school student learn multiplication. Use the Math.random method or a Random object to produce two positive one-digit integers.

  Create the working applet to compute tax

Write down a java applet. Your applet assits to find out how much federal tax we require to pay suppose the tax rate is 12%. Create and implement the working applet to compute tax.

  Write java program that writes names to text file

Create an empty text file called myfile.txt. Write a Java program that writes your names to the text file created. If the file does not exist, include an exception handler for that error.

  Implement a class quiz

Implement a class Quiz that implements the Measurable interface.

  Modify the scholarship application

Modify the Scholarship application so that if a user enters a grade point average under 0 or over 4.0, or a negative value for either of the activities, an error message appears.

  Write java program to read in sequence of hourly temperature

Write down Java program which reads in sequence of hourly temperature readings over 24-hour period using arrays. Your program must find and show maximum and minimum temperatures.

  Java program to decide whether integer is perfect number

For example, 6 is a perfect number because 6 = 1 + 2 + 3. Write a Java program that decides whether integer is a perfect number.

  Displays every perfect number from 1 through 1000

Write an application that displays every perfect number from 1 through 1000. A perfect number is one that equals the sum of all the numbers that divide evenly into it.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd