-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lab5.java
71 lines (53 loc) · 1.96 KB
/
Lab5.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import java.util.Scanner;
/**
* Lab5.java
*
* @author (you)
* @version (a version number or a date)
*/
public class Lab5 {
public static void main(String[] args) {
// Test your methods by calling them here
}
/**
* getRichQuick
*
* Calculates days to earn $1 million
*/
public static void getRichQuick() {
// TODO
}
/**
* isPrime
*
* Prints a message if a number is prime or not
*/
public static void isPrime() {
// TODO
}
/**
* palindromeCheck
*
* This program reads words, identifies, counts and writes all the palindromes and the total
* palindrome count.
*
* hint 1: Using keybord.next() will only return what comes before a space.
* hint 2: Using keybord.nextLine() automatically reads the entire current line.
*/
public static void palindromeCheck(){
String userInput = ""; // Stores words read from user input
int palindromeCount = 0; // Keeps track of palindrome words only
int totalWords = 0; // Counts the total number of lines read from the given text file
System.out.println("Enter some words separated by white space "); // Ask for user input
// Declare your Scanner object here
Scanner keyboard = new Scanner(System.in);
// for each word user enters
while (keyboard.hasNext()) {
userInput = keyboard.next(); // Store each word in a string variable and then do your operations
totalWords++; // Increment number of words as you read each one
// TODO: Call your helper method to check if the word is a palindrome and print the results
System.out.println(" " + totalLines + " " + userInput); // test
}
}
// TODO: Write your helper method for palindromeCheck here
}