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

Pynhon хелп.......................

Приложения:

sdzogola: Python*
MCFoger: не розумію, тобто треба перевірити чи н дорівнює м, а потім перевірити при діленні?
sdzogola: так
MCFoger: тобто треба перевірити, чи м=н?
sdzogola: іменно
MCFoger: зрозуміло

Ответы

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

Доброго дня, нарешті конкретизував питання...

Ну що ж, розпочнімо!

Для початку треба оголосити змінну n, але так, щоб вона була числом, ще й цілим та ще, щоб користувач увів дані, отже

n=int(input())

З m такий самий спосіб, отже

m=int(input())

Далі нам потрібно перевірити чи є вони рівні при діленні.

давайте розглянемо логіку виразу: нам потрібно перевірити чи є вони рівні, отже треба використати структуру розгалуження: if/else

if m==n:

Потім за умовою задачі, нам потрібно вивести слово "ні", бо він є дільником. Ми пам'ятаємо, що при діленні двох однакових чисел, ми отримаємо 1, а отже, він є дільником. Далі нам потрібно вивести значення:

print("Ні')

Після цього, ми повинні перевірити інші умови, тобто використовуємо:

else:

І нам потрібно вивести значення так:

print ("Так")

Повний код:

n=int(input())

m=int(input())

if m==n:

print("Ні")

else:

print ("Так")

На пам'ятку: використовуєте табування, щоб не порушувати умову коду, бо якщо ви перейдете до теми цикли, то:

while n==0:

print(n)

та

while n==0:

print(n)

мають різні умови, тобто в першому випадку, n виводиться в циклі, а в другому колі, виводиться початкове значення змінної n

Гарного вам дня та настрою!

Похожие вопросы
Предмет: Английский язык, автор: annanas2
Предмет: Английский язык, автор: wi201
Записать аннотацию на текст ( На английском языке)

Для составления аннотации используйте следующие клише:

The subject of the text is... At the beginning (of the text) the author describes... (dwells on ...; explains...; touches upon...; analyses...; comments ...; characterizes ...; underlines ...; reveals...; gives account of...) The article begins with the description of..,, a review of..., the analysis of... The article opens with ... Then (after that, further on, next) the author passes on to ..., gives a detailed (thorough) analysis (description), goes on to say that ... To finish with, the author describes ... At the end of the article the author draws the conclusion that ...; the author sums it all up (by saying...) In conclusion the author...


Сам текст ( По которому составлять аннотацию ) :
As it is well known, a computer cannot perform or complete any useful work unless it is able to communicate with its external environment. All data and instructions enter and leave the central processing unit through primary storage. Input-output devices are needed to link primary storage to the environment, which is external to the computer system. So input devices are used to enter data into primary storage. Output units accept data from primary storage to provide users with information or to record the data on a secondary storage device. Some devices are used for both the input and output functions. The data with which these devices work may or may not be in a form that humans can understand. For example the data that a data entry operator keys into the memory of a computer by typing on a keyboard are readable by humans. However, the data that tell a computer about the performance of an automobile engine are not in a form that humans can read. They are electrical signals from an analog sensor. Similarly, output may be on a printed page, which humans can read easily, or upon some other medium where the data are not visible, such as on magnetic tape or disk. As we know, all of the data flow from input to final output is managed by the control unit in the CPU. Regardless of the nature of the I/O devices, special processors called I/O interfaces are required to convert the input data to the internal codes used by the computer and to convert internal codes to a format which is usable by the output device.