Question: # root.py: takes a float c and an integer k as command-line arguments and # writes the kth root of c to 5 decimal places

# root.py: takes a float c and an integer k as command-line arguments and # writes the kth root of c to 5 decimal places of accuracy.

import stdio import sys

# Get c from command line, as a float. c = ...

# Get k from command line, as an int. k = ...

# Define epsilon to be 0.00001 (for 5 decimal places of accuracy). epsilon = ...

# Define a variable t (kth root of c) and initialize it to the value of c. t = ...

# Repeat until t is accurate enough. while ...: # Improve t. t = ...

# Write t. ...

do not use print, use stdio.writeln instead.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!