Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Program 1 First write functions for the following: A function circleArea (radius) that returns the area of a circle having the given radius. (The formula

Program 1

First write functions for the following:

A function circleArea (radius) that returns the area of a circle having the given radius. (The formula is A = r^2 .)

A function circlePerimeter(radius) that returns the perimeter of a circle having the given radius. (The formula is P = 2r .)

Then write a main program that uses these functions to compute the area and perimeter of a circle given the radius.

The program should prompt the user for the radius and then print out the area and perimeter.

A sample run for the program is as follows:

Enter the radius of the circle: 5 Area of the circle is 78.5 Perimeter of the circle is 31.4

Submit your program file, which should include the function(s) as well as the main program, named as follows: ITS-150_assignment3_1.py

Program 2

Write a function to compute the nth number of the following series: Given a value x, multiply all the non-zero digits of x together and then add that value to x to get the next number in the series. The function should be named: some_series.

1, 2, 4, 8, 16, 22, 26, 38, 62, 74, 102, 104, 108, 116, 122, 126, 138, 162, 174, 202, 206, 218, 234, 258, 338, 410, 414, 430, 442, 474, 586, 826, 922, 958, 1318, 1342, 1366,

Write a main program that prompts the user to enter n and prints out the nth number of the series.

A sample run for the program is as follows.

Enter a positive integer: 6 The 6th number of the series would be 22

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

Oracle RMAN For Absolute Beginners

Authors: Darl Kuhn

1st Edition

1484207637, 9781484207635

More Books

Students also viewed these Databases questions