HW #4

अब Quizwiz के साथ अपने होमवर्क और परीक्षाओं को एस करें!

In this exercise, use the following variables : i,lo, hi, and result. Assume that lo and hi each are associated with an int and that result refers to 0. Write a while loop that adds the integers from lo up through hi (inclusive), and associates the sum with result. Your code should not change the values associated with lo and hi. Also, just use these variables : i,lo, hi, and result.

i=lo while i <= hi: result +=i i += 1

Use the variables k and total to write a while loop that computes the sum of the squares of the first 50 counting numbers, and associates that value with total. Thus your code should associate 1*1 + 2*2 + 3*3 +... + 49*49 + 50*50 with total. Use no variables other than k and total.

k=1 total = 0 while k<=50 : total += k*k k+=1

Assume there is a variable , h already associated with a positive integer value. Write the code necessary to compute the sum of the first h perfect squares, starting with 1. (A perfect square is an integer like 9, 16, 25, 36 that is equal to the square of another integer (in this case 3*3, 4*4, 5*5, 6*6 respectively).) Associate the sum you compute with the variable q. For example, if h is 4, you would assign 30 to q because the first 4 perfect squares (starting with 1) are: 1, 4, 9, 16 and 30==1+4+9+16.

k = 1 q = 0 while k <= h: q += k*k k += 1

An arithmetic progression is a sequence of numbers in which the distance (or difference) between any two successive numbers if the same. This in the sequence 1, 3, 5, 7, ..., the distance is 2 while in the sequence 6, 12, 18, 24, ..., the distance is 6. Given the positive integer distance and the positive integer n, associate the variable sum with the sum of the elements of the arithmetic progression from 1 to n with distance distance. For example, if distance is 2 and n is 10, then sum would be associated with 25 because 1+3+5+7+9 = 25.

sum=0 for i in range(1,n+1,distance): sum += i

Given that n refers to a positive int use a while loop to compute the sum of the cubes of the first n counting numbers, and associate this value with total. Use no variables other than n, k, and total.

total = 0 k = 1 while k <=n : total += k**3 k += 1


संबंधित स्टडी सेट्स

Module 7 - Chapter 7 Reading: International & Space Law

View Set

Geology Unit 3 - Topographic Maps

View Set

SYTM 5504 Week 4 Practice Questions

View Set

MGMT 425 Chapter 8: Measuring and Controlling Quality

View Set

UNLV 701 UDL IRIS MODULE 4 Notes

View Set

Disaster Planning Adaptive Quizzing

View Set

MATH144: Introduction to Data Science Mod 1 Reviewer

View Set

Microbiology Chapter 4 Questions

View Set

World Geography: Chapters 28 and 29

View Set

Project Management Topic 3/Unit 3 & Topic 2/Unit 4

View Set

PHA 404 Human Physiology Ch 13 Respiratory Complete

View Set