Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

import random def gcd(a,b): if a

import random

def gcd(a,b): if a

while (a % b != 0): a,b =b,a%b return b

if __name__=="__main__": for i in range(100): r1,r2=random.randint(1,9999999),random.randint(1,9999999) print("a={} and b={} and gcd={}".format(r1,r2,gcd(r1,r2)))

Explain every step of this code

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data And Databases

Authors: Jeff Mapua

1st Edition

1978502257, 978-1978502253

More Books

Students also viewed these Databases questions

Question

import random def gcd(a,b): if a

Answered: 1 week ago

Question

Discuss the Hawthorne experiments in detail

Answered: 1 week ago

Question

Explain the characteristics of a good system of control

Answered: 1 week ago

Question

State the importance of control

Answered: 1 week ago

Question

What are the functions of top management?

Answered: 1 week ago

Question

What is the basis for Security Concerns in Cloud Computing?

Answered: 1 week ago

Question

Describe the three main Cloud Computing Environments.

Answered: 1 week ago