How do I make: Code 1: import java.util.Scanner; public class ProjectEliza {     public static void main(String[] args) {             while(true){             Scanner s=new Scanner(System.in);             System.out.println("ELIZA: Hello, my name is Eliza. What is your name? ");             System.out.print("USER: ");             String name=s.next();             System.out.println("ELIZA:    Hello, "+name+". Tell me what is on your mind today in 1 sentence.");             System.out.print("USER: ");             String sentence=s.next();                          sentence += s.nextLine();             String[] words = sentence.split("\\s+");             // for (int i = 0, l = words.length; i + 1 < l; i++) //                     System.out.println(words[i]);             //System.out.println("ELIZA: "+question2(words));             System.out.print("USER: ");             String exit=s.next();             if(exit.equals("EXIT")){             System.out.println("ELIZA: Do you want to run the session again?");             System.out.println("USER: ");             String yn=s.next();             if(yn.equals("yes")){             }else{             System.out.println("ELIZA: Goodbye, until next time");             break;             }             }                      }     }}               Code 2: import java.util.Scanner; public class PromptBank { public static void main(String[] args) { } public static String question1(String[] words){ String result= "Tell me more about "+words[0]+" and "+words[(words.length)-1]; return result; } public static String question2(String[] words){ String result= words[0]+" seems important to you, so does "+words[(words.length)-1]+" . Please tell me more"; return result; } public static String question3(String[] words){ String result= words[0]+" and "+words[(words.length)-1]+"seems to be on your mind. Let's talk"; return result; } } run as seperate files but work together. Java Eclipse

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

How do I make:

Code 1:

import java.util.Scanner;

public class ProjectEliza {
    public static void main(String[] args) {    
        while(true){
            Scanner s=new Scanner(System.in);
            System.out.println("ELIZA: Hello, my name is Eliza. What is your name? ");
            System.out.print("USER: ");
            String name=s.next();
            System.out.println("ELIZA:    Hello, "+name+". Tell me what is on your mind today in 1 sentence.");
            System.out.print("USER: ");
            String sentence=s.next();
            
            sentence += s.nextLine();
            String[] words = sentence.split("\\s+");
            // for (int i = 0, l = words.length; i + 1 < l; i++)
//                     System.out.println(words[i]);
            //System.out.println("ELIZA: "+question2(words));
            System.out.print("USER: ");
            String exit=s.next();
            if(exit.equals("EXIT")){
            System.out.println("ELIZA: Do you want to run the session again?");
            System.out.println("USER: ");
            String yn=s.next();
            if(yn.equals("yes")){

            }else{
            System.out.println("ELIZA: Goodbye, until next time");
            break;
            }
            }
            
        }
    }}
          
   Code 2:

import java.util.Scanner;
public class PromptBank {
public static void main(String[] args) {
}
public static String question1(String[] words){
String result= "Tell me more about "+words[0]+" and "+words[(words.length)-1];
return result;
}
public static String question2(String[] words){
String result= words[0]+" seems important to you, so does "+words[(words.length)-1]+" . Please tell me more";
return result;
}
public static String question3(String[] words){
String result= words[0]+" and "+words[(words.length)-1]+"seems to be on your mind. Let's talk";
return result;
}
}

run as seperate files but work together. Java Eclipse

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Adjacency Matrix
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
Recommended textbooks for you
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education