
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
java 1 error with my code pls help correct my code
![eclipse-workspace
- Projectone/mine.java - Eclipse IDE
File Edit Source Refactor Navigate Search Project Run Window Help
PAND 1
↓
$
mine.java X
▸ Projectone (default package) ▸ Assignment
le import java.util.*;
2
3 import java.io.*;
4
5 public class Assignment
60
public static void main(String args[]) throws FileNotFoundException {
7
Scanner input = new Scanner (new File("am.txt"));
8
int words = 0, lines = 0, chars = 0;
9
10
while (input.hasNextLine()) {
11
String line = input.nextLine();
12
Scanner ScanLine = new Scanner (line);
13
14
while (ScanLine.hasNext()) {
15
words++;
16
chars + ScanLine.next().length();
17
}
18
lines++;
19
}
20
21
11
System.out.println("Number of lines = + lines);
System.out.println("Number of words = "+words);
22
23
System.out.println("Number of characters = " + chars);
24
25
}
26
27 }
Problems @Javadoc Declaration Console X
terminated> mine (3) [Java Application] C:\Program Files\Java\jdk-18.0.1\bin\javaw.exe (May 1, 2022, 12:44:16 PM – 12:44:17 PM) [pid: 66620]
Error: Could not find or load main class mine
Caused by: java.lang.ClassNotFoundException: mine
02 ▼ 2▼ # © ▾](https://content.bartleby.com/qna-images/question/47d7a0f8-4e66-40ed-ae66-faa7d8f664d3/fd897b71-0096-4431-9562-7798bd6919e4/qlcjuan_thumbnail.png)
Transcribed Image Text:eclipse-workspace
- Projectone/mine.java - Eclipse IDE
File Edit Source Refactor Navigate Search Project Run Window Help
PAND 1
↓
$
mine.java X
▸ Projectone (default package) ▸ Assignment
le import java.util.*;
2
3 import java.io.*;
4
5 public class Assignment
60
public static void main(String args[]) throws FileNotFoundException {
7
Scanner input = new Scanner (new File("am.txt"));
8
int words = 0, lines = 0, chars = 0;
9
10
while (input.hasNextLine()) {
11
String line = input.nextLine();
12
Scanner ScanLine = new Scanner (line);
13
14
while (ScanLine.hasNext()) {
15
words++;
16
chars + ScanLine.next().length();
17
}
18
lines++;
19
}
20
21
11
System.out.println("Number of lines = + lines);
System.out.println("Number of words = "+words);
22
23
System.out.println("Number of characters = " + chars);
24
25
}
26
27 }
Problems @Javadoc Declaration Console X
terminated> mine (3) [Java Application] C:\Program Files\Java\jdk-18.0.1\bin\javaw.exe (May 1, 2022, 12:44:16 PM – 12:44:17 PM) [pid: 66620]
Error: Could not find or load main class mine
Caused by: java.lang.ClassNotFoundException: mine
02 ▼ 2▼ # © ▾
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by stepSolved in 2 steps

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- T/F 1. Java methods can only return primitive typesarrow_forwardProgramming Exercise 2-4 Instructions QuartsToGallons,.java + >- Terminal + 1 // QuartsToGallons.java 2 class QuartsToGallons { sandbox $ I Write a program that declares a constant named QUARTS_IN_GALLON public static void main(String[] args) { // Write your code here } 3 which holds the number of quarts in a gallon (there are 4 quarts to a gallon). 4 Also declare a variable named quartsNeeded to represent the number of 5 quarts needed for a painting job, and assign an appropriate value. Compute 6 } and display the number of gallons and quarts needed for the job. Display explanatory text with the values-for example, A job that needs 18 quarts requires 4 gallons plus 2 quarts. When submitting the program for testing/grading, assign the value 18 to quartsNeeded. Grading Write your Java code in the area on the right. Use the Run button to compile and run the code. Clicking the Run Checks button will run pre-configured tests against your code to calculate a grade. Once you are happy with…arrow_forwardJavabased program output onlyarrow_forward
- java languageSchedule the People classIn main file, create an object of class PeopleMake the showPeople method callarrow_forwardProgramming Exercise 5-4 Instructions CellPhoneService.java >- Terminal 1 import java.util.*; 2 public class CellPhoneService { sandbox $| Write the CellPhoneService program for Horizon public static void main (String args[]) { // Write your code here 3 Phones, a provider of cellular phone service. Prompt a 4 user for maximum monthly values for talk minutes used, } text messages sent, and gigabytes of data used, and then 6 } recommend the best plan for the customer's needs. • A customer who needs fewer than 500 minutes of talk and no text or data should accept Plan A at $49 per month. • A customer who needs fewer than 500 minutes of talk and any text messages should accept Plan B at $55 per month. • A customer who needs 500 or more minutes of talk and no data should accept either Plan C for up to 100 text messages at $61 per month or Plan D for 100 text messages or more at $70 per month. • A customer who needs any data should accept Plan E for up to 3 gigabytes at $79 or Plan F for 3…arrow_forwardDesign methods aid code comprehension.arrow_forward
- Java Language Create Clock class and demonstrate the features of the class with the driver program. upload a single file that contains the source code with documentation for both the clock class and the driver and execution of the program. The rule for execution is that you execute enough times with sufficient data that every line in the program is executed).arrow_forwardJava code to get number from user and print square of it Thanks in advancearrow_forwardJAVA PROGRAM ASAP ************* THE PROGRAM MUST WORK IN HYPERGRADE AND PASS ALL THE TEST CASES.**************** Chapter 16. PC #5. Palindrome Detector (page 1073) A palindrome is any word, phrase, or sentence that reads the same forward and backward. Here are some well-known palindromes: Able was I, ere I saw Elba A man, a plan, a canal, Panama Desserts, I stressed Kayak Write a boolean method that uses recursion to determine whether a String argument is a palindrome. The method should return true if the argument reads the same forward and backward. Demonstrate the method in a program. The program should ask the user to enter a string, which is checked for palindrome property. The program displays whether the given input is a palindrome or not, then prompts the user to enter another string. If the user enters QUIT (case insensitive, then exit the program). Test Case 1 Please enter a string to test for palindrome or type QUIT to exit:\nDesserts, I…arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education