какая из указанных строк считывает целое число в переменную п? • n = input0 • n = integer(input)) • n = number(input0) • n = int(inputO) • n = str(input0)

Computers

Question
какая из указанных строк считывает целое число в переменную п?
• n = input0
• n = integer(input))
• n = number(input0)
• n = int(inputO)
• n = str(input0)
Answer

n = int(inputO)

Download to view full explanation
The line "n = int(inputO)" reads an integer value from the standard input and assigns it to the variable "n". The "int...
Solve any homework question FREE with our app, NO PAYMENT required!