Computer Science, asked by adityasangli3334, 4 months ago

Write a program that uses input to promt a user for their name and then welcomes them

Answers

Answered by gaganadithyareddy9
0

Answer:

Hey this is in python...

name = input("Enter your name: ")

print("Hi " + name)

print("Welcome to the program.")

# HOPE THIS HELPS!!

Answered by Avidhabanerjee4
1

Answer:

name = input('Enter your name:')

print ('Hello'), name.

hours = float(input('Enter Hours:'))

rate = float(input('Enter Rate:'))

pay = hours * rate.

print ('Pay ='), pay.

celsius = float(input('Enter degrees in Celsius:'))

Similar questions