Write a program that asks the user to enter a name, and then print "Nice to meet you NAME". Your program should repeat these steps until the user inputs "Nope".
Answers
Answered by
0
Explanation:
There are several languages in which program can be developed.
This program is written below in python language. #this is a comment
CODE:
void main () :
bool done = false
while not done
name = input("enter your name:")
for i in name:
if ( I == "nope" ):
done = true;
break
else:
print( "nice to meet you" ,name )
return
Similar questions
English,
5 months ago
English,
5 months ago
English,
10 months ago
Social Sciences,
10 months ago
Social Sciences,
1 year ago
English,
1 year ago