Вводится последовательность натуральных чисел. ноль – признак конца. определить, является ли она прогрессией.

Xoxoxo4577 Xoxoxo4577    3   05.10.2019 12:50    2

Ответы
ЛиЗоЧкА198 ЛиЗоЧкА198  09.10.2020 21:40

Ладно давай без массивов попробуем на питоне:

PastNum = int (input ())

Progress = True

NumOfProgress = 0

if PastNum != 0:

   thisNum = int (input ())

   NumOfProgress = thisNum / PastNum

   while thisNum != 0:

       PastNum = thisNum

       thisNum = int (input ())

       if thisNum == 0:

                       break;

       if thisNum / PastNum != NumOfProgress:

           Progress = False;

if Progress == False:

   print ("It isn't a progress");

else:

   print ("It's a progress");

ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика