Computer Science, asked by vishwajeetgavit611, 9 months ago

hrs=input("Enter Hour:")

rate=input("Eenter Rate per Hour:")

pay=float(hrs)*float(rate)




 Write a program that uses input to prompt a user for their name and then welcomes them. Note that input will pop up a dialog box. Enter Sarah in the pop-up box when you are prompted so your output will match the desired output.​

Answers

Answered by omandlik12
1

Answer:

JavaScript or CCL....

Answered by Doraemon4578
0

Program: name = input ("Enter name :"), print("Welcome",name). We will use this program to prompt the user to text their name.

Explanation:

As we have read the question, the user should key-in the input.

Name= input("Enter name:"), it will be used to prompt the user.  

Print("Welcome", name), will be used to welcome the user by displaying their name.

Similar questions