TiankaiDing / cs11afall18-team31

Apache License 2.0
0 stars 0 forks source link

Intro #3

Open TiankaiDing opened 5 years ago

TiankaiDing commented 5 years ago

write the intro for the program

TiankaiDing commented 5 years ago

public class GroupProject { public static void main(String[] args){ System.out.println("Hello, This is CS11a group 31's final project."); System.out.println("This is a program that help you know more about each building of Brandeis University!"); System.out.println("Now,let's begin!"); System.out.println("Welcome, This is Brandeis University! Now, select a building you would like to know and enter the name of it."); String building = TextIO.getlnWord(); if(word.equals("Skyline Hall")){ System.out.println("a dorm that is a new, state-of-the-art residence hall, opened in August 2018. It’s a new building which could show the panorama of Boston and surrounding communities.") } else if(word.equals("North Quad")){ System.out.println("it is a quad for students housing, interactions. The quad contains four buildings: Gordon Hall, Scheffres Hall, Reitman Hall, and Cable. Besides, there is a game room in polaris lounge (between Gordon and Scheffres). ") } else if(word.equals("Massell Quad")){ System.out.println("Massell Quad is home to first year students. Encircling the Anne J. Kane Reflecting Pool and the Albert Yakus Meditation Area, Massell Quad consists of four residence halls: Shapiro, Usen, Deroy and Renfield.") } else if(word.equals("Usdan Student Center")){ System.out.println("it has the academic services, department of community living, dining services (hoot market; lower usdan dining hall; sodexo…..), a big gaming room, mail services, meeting rooms.") } else if(word.equals("Gosman Sports and convocation center")){ System.out.println("it is a gym for both athletes and students. There are a lot of tennis, basketball, squash courts and so on. It locates in the southeast of Brandeis University.") } else if(word.equals("Goldfarb & Farber")){ System.out.println("libraries at Brandeis which have starbucks coffee, printers, and computer borrowing services. ") } else if(word.equals("Sherman dining hall")){ System.out.println("it’s a dining hall that is close to the massell quad and SCC. ") } else if(word.equals("East Quad")){ System.out.println("On campus housing for majority of the sophomores. Right across the Skyline Quad.") } else if(word.equals("Shapiro Campus Center")){ System.out.println("the center of campus for the university community–students, faculty, administration, alumni and guests.") } else if(word.equals("Rosenthal Quad")){ System.out.println("it is located in the center of campus, accommodating 181 upperclass students in eight-person suite.") } else if(word.equals("Charles River Apartments")){ System.out.println("those are the residence hall for upperclass students and graduate students. It is off main campus. Students can take bran van to the main campus.( transportation provided by the university ).") } else if(word.equals("The Village")){ System.out.println("it is a state-of-the-art facility that houses 220 undergraduate students.") } else if(word.equals("Chapels Field")){ System.out.println("there are three chapels on campus, providing space for students.") } else if(word.equals("Kutz Hall")){ System.out.println("A building which has many administrative functions, including getting campus card, register/ cancel courses and international students services. ") } else if(word.equals("Schwartz Hall")){ System.out.println("it includes classrooms supporting the Crown Center for Middle East Studies and the psychology, sociology and biology departments.") } else if(word.equals("The Brown Social Sciences Center")){ System.out.println("it is home the psychology and anthropology departments. It has many offices and classroom there.") } else if(word.equals("Spingold Theater Center")){ System.out.println("it serves as the performance home for the Brandeis Theater. It includes performance venues and main theater.") } else if(word.equals("Faculty Center")){ System.out.println("it is a place for faculty club. Mostly, it provides a dining hall to professors and students.") } else if(word.equals("Ziv Quad")){ System.out.println("it is home to many students from our junior and senior classes. The Quad consists of four buildings: 127, 128, 129 (Mazer Hall) and 130. Ziv residents live in six-person suites. Each air-conditioned suite has six single bedrooms, a spacious common area and two private bathrooms.") } else if(word.equals("International Business School")){ System.out.println("it is a place for faculty club. Mostly, it provides a dining hall to professors and students.") } else if(word.equals("The Slosberg Music Center at Brandeis University")){ System.out.println("it is an acoustic recital/concert hall that hosts concerts of all genres. It is also home to the Department of Music which is also the home of the Lydian String Quartet.") } else if(word.equals("The Rose Art Museum")){ System.out.println("it is named after benefactors Edward and Bertha Rose. It offers temporary exhibitions, and it displays and houses works of art from the Brandeis University art collections.") } else if(word.equals("The Goldsmith Building")){ System.out.println("it offers classrooms for mathematics lessons. It is also the location of the mathematic department.") } } }