Science, asked by mukulparmar8406, 5 hours ago

Write a program that prompts the user for a full name as input. The input string/full name must
contain two names and a surname. After the user has entered a full name, the program should
then display only the initials and the surname

Answers

Answered by huzaimkhan
0

Answer:

x= 'please write your firstname here'

SEND x TO DISPLAY

INPUT firstname FROM KEYBOARD

y='please write your lastname here'

INPUT lastname FROM KEYBOARD

#concatenating x and y and displaying the strings together

SEND ('this is your fullname', x+y) TO DISPLAY

Similar questions