Moi nguoi giup em voi, em dang hoc java, em khong biet doan code nay sai o dau
public class MadLibs {
/*
this program generates a mad libbed story
author: PHuoc
Date: 2/19/2019
*/
public static void main(String[] args) {
//The template for the story
String story = "This morning "+name1+" woke up feeling "+adjective1+". 'It is going to be a "+adjective2+" day!' Outside, a bunch of "+noun1+"s were protesting to keep "+noun2+" in stores. They began to "+verb1+" to the rhythm of the "+noun3+", which made all the "+noun4+"s very "+adjective3+". Concerned, "+name1+" texted "+name2+", who flew "+name1+" to "+place1+" and dropped "+name+" in a puddle of frozen "+noun5+". "+name1+" woke up in the year "+number+", in a world where "+noun6+"s ruled the world.";
String name1 = "Phuoc";
String adjective1 = "tired";
String adjective2 = "exciting";
String adjective3 = "loud";
String verb1 = "make";
String noun1 = "people";
String noun2 = "contaminatedwater";
String noun3 = " yelling";
String noun4 = "sound";
String noun5 = "water";
String noun6 = "psycho";
String name2 = "thangNgu";
int number = 2019;
String place1 = "quan1";
System.out.println(story);
}
}

83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?