+ 2
Help me to solve this
how can i print a new statement after the below output if the user input 'Y'? Do you want to add some glitters?[Y-Yes,N-No]: Y
3 ответов
+ 6
StarryGirl ,
it would be very helpful, to see your code. please put it in playground and link it here.
thanks!
+ 2
You can use condition statement like if statement
If(input=='Y')
//Do something
else if(input=='N')
//Do something
else
Print invalid input please enter again
+ 1
Question Not clear...
Better to explain with code sample...