Предмет: Информатика, автор: Sharoman

Помогите написать программу
Язык python

Приложения:

Ответы

Автор ответа: valgrisa
0

Ответ:

n = int(input())

print('The next number for the number ', n, ' is ', n+1,'.',sep='')

print('The previous number for the number ', n, ' is ', n-1,'.',sep='')

Автор ответа: teacher1011
0

n = int(input())

if -1000<=n<=1000:

 print(f"The next number for the number {n} is {n+1}\nThe previous

 number for the number {n} is {n-1}")

else:

  print(f"The number {n} is out of range")

Похожие вопросы