The document describes a chat bot program that asks the user a series of questions to get to know them. It asks questions about their name, birthplace, favorite colors, sports, movies and more. Based on the user's responses, it summarizes their information back to them at the end.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
13 views3 pages
Program
The document describes a chat bot program that asks the user a series of questions to get to know them. It asks questions about their name, birthplace, favorite colors, sports, movies and more. Based on the user's responses, it summarizes their information back to them at the end.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3
TextWindow.WriteLine("A.
Chat Bot ")
TextWindow.WriteLine("B. Capital Test ") TextWindow.WriteLine("C. Draw Shapes") TextWindow.WriteLine("D. Number Guesser Program") TextWindow.WriteLine("E. The Time") answer = TextWindow.Read() answer = Text.ConvertToLowerCase(answer) IF answer = "a" THEN TextWindow.WriteLine("Hello " +name+ ", how are you? Good or bad?") variable = TextWindow.Read() variable = Text.ConvertToLowerCase(variable) IF variable = "good" THEN TextWindow.WriteLine("Good for you!") TextWindow.WriteLine("What is you favourite colour?") colour = TextWindow.Read() Textwindow.WriteLine("Do you wear "+ colour +" clothes?") a = TextWindow.Read() Textwindow.WriteLine("What is your favourite number?") number = TextWindow.Read() Textwindow.WriteLine("Are you "+ number+ " years old?") a = TextWindow.Read() Textwindow.WriteLine("Do you have any siblings?") sib = TextWindow.Read() Text.ConvertToLowerCase(sib) IF sib = "yes" THEN TextWindow.WriteLine("How many do you have?") a1 = TextWindow.Read() Textwindow.WriteLine("When were you born?") a2 = TextWindow.Read() Textwindow.WriteLine("Where were you born?") a3 = TextWindow.Read() Textwindow.WriteLine("Where do you live?") a4 = TextWindow.Read() Textwindow.WriteLine("What is your full name?") a5 = TextWindow.Read() Textwindow.WriteLine("What is your favourite sport?") a6 = TextWindow.Read() Textwindow.WriteLine("What is your favourite movie ") a7 = TextWindow.Read() Textwindow.WriteLine("What is your favourite TV show") a8 = TextWindow.Read() Textwindow.WriteLine("What is your favourite food") a9 = TextWindow.Read() Textwindow.WriteLine("What is your favourite game?") a10 = TextWindow.Read() Textwindow.WriteLine("What is your favourite football team") a11 = TextWindow.Read() Textwindow.WriteLine("Ok") Textwindow.WriteLine("You have " + a1 + " siblings") Textwindow.WriteLine("You were born on " + a2) Textwindow.WriteLine("You were born in " + a3) Textwindow.WriteLine("You live in " + a4) Textwindow.WriteLine("Your full name is "+ a5) Textwindow.WriteLine("Your favourite sport is " + a6) Textwindow.WriteLine("Your favourite movie is " + a7) Textwindow.WriteLine("Your favourite TV show is " + a8) Textwindow.WriteLine("Your favourite food is " + a9) Textwindow.WriteLine("Your favourite game is " + a10) Textwindow.WriteLine("Your favourite football team is " + a11) ENDIF IF sib = "no" THEN Textwindow.WriteLine("When were you born?") a2 = TextWindow.Read() Textwindow.WriteLine("Where were you born?") a3 = TextWindow.Read() Textwindow.WriteLine("Where do you live?") a4 = TextWindow.Read() Textwindow.WriteLine("What is your full name?") a5 = TextWindow.Read() Textwindow.WriteLine("What is your favourite sport?") a6 = TextWindow.Read() Textwindow.WriteLine("What is your favourite movie ") a7 = TextWindow.Read() Textwindow.WriteLine("What is your favourite TV show") a8 = TextWindow.Read() Textwindow.WriteLine("What is your favourite food") a9 = TextWindow.Read() Textwindow.WriteLine("What is your favourite game?") a10 = TextWindow.Read() Textwindow.WriteLine("What is your favourite football team") a11 = TextWindow.Read() Textwindow.WriteLine("Ok") Textwindow.WriteLine("You were born on " + a2) Textwindow.WriteLine("You were born in " + a3) Textwindow.WriteLine("You live in " + a4) Textwindow.WriteLine("Your full name is "+ a5) Textwindow.WriteLine("Your favourite sport is " + a6) Textwindow.WriteLine("Your favourite movie is " + a7) Textwindow.WriteLine("Your favourite TV show is " + a8) Textwindow.WriteLine("Your favourite food is " + a9) Textwindow.WriteLine("Your favourite game is " + a10) Textwindow.WriteLine("Your favourite football team is " + a11) Textwindow.WriteLine("Right?") EndIf ENDIF ENDIF IF variable = "bad" THEN TextWindow.WriteLine("Why?") a = TextWindow.Read() TextWindow.WriteLine("Oh, I'm sorry for you") TextWindow.WriteLine("What is you favourite colour?") colour = TextWindow.Read() Textwindow.WriteLine("Do you wear "+ colour +" clothes?") a = TextWindow.Read() Textwindow.WriteLine("What is your favourite number?") number = TextWindow.Read() Textwindow.WriteLine("Are you "+ number+ " years old?") a = TextWindow.Read() Textwindow.WriteLine("Do you have any siblings?") sib = TextWindow.Read() Text.ConvertToLowerCase(sib) IF sib = "yes" THEN TextWindow.WriteLine("How many do you have?") a1 = TextWindow.Read() Textwindow.WriteLine("When were you born?") a2 = TextWindow.Read() Textwindow.WriteLine("Where were you born?") a3 = TextWindow.Read() Textwindow.WriteLine("Where do you live?") a4 = TextWindow.Read() Textwindow.WriteLine("What is your full name?") a5 = TextWindow.Read() Textwindow.WriteLine("What is your favourite sport?") a6 = TextWindow.Read() Textwindow.WriteLine("What is your favourite movie ") a7 = TextWindow.Read() Textwindow.WriteLine("What is your favourite TV show") a8 = TextWindow.Read() Textwindow.WriteLine("What is your favourite food") a9 = TextWindow.Read() Textwindow.WriteLine("What is your favourite game?") a10 = TextWindow.Read() Textwindow.WriteLine("What is your favourite football team") a11 = TextWindow.Read() Textwindow.WriteLine("Ok") Textwindow.WriteLine("You have " + a1 + " siblings") Textwindow.WriteLine("You were born on " + a2) Textwindow.WriteLine("You were born in " + a3) Textwindow.WriteLine("You live in " + a4) Textwindow.WriteLine("Your full name is "+ a5) Textwindow.WriteLine("Your favourite sport is " + a6) Textwindow.WriteLine("Your favourite movie is " + a7) Textwindow.WriteLine("Your favourite TV show is " + a8) Textwindow.WriteLine("Your favourite food is " + a9) Textwindow.WriteLine("Your favourite game is " + a10) Textwindow.WriteLine("Your favourite football team is " + a11) Textwindow.WriteLine("Right?") ENDIF ENDIF