我有一个程序,当用户输入心情时,它会输出一个基于它的报价。我需要告诉程序
if the user is happy, then output this text
问题是,我不知道如何让程序识别输入并基于它输出文本......这是我到目前为止所拥有的代码。
import java.util.Scanner;
public class modd {
public static void main(String arrgs[]) {
System.out.println("Enter your mood:");
Scanner sc = new Scanner(System.in);
String mood = sc.nextLine();
if (sc = happy) {
System.out.println("test");
if (sc = sad) {
System.out.println("I am sad");
}
}
}
}