Computer Science
Write a program to input a single digit(n) and print a 3 digit number created as
Python
Python Funda
81 Likes
Answer
d = int(input("Enter a digit in range 1-7: "))
n = d * 10 + d + 1
n = n * 10 + d + 2
print("3 digit number =", n)
Output
Enter a digit in range 1-7: 7
3 digit number = 789
Answered By
44 Likes
Related Questions
Write a program to compute simple interest and compound interest.
Write a program to read details like name, class, age of a student and then print the details firstly in same line and then in separate lines. Make sure to have two blank lines in these two different types of prints.
Write a program to read three numbers in three variables and swap first two variables with the sums of first and second, second and third numbers respectively.
Write a program to input a number and print its first five multiples.