Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I've got code below for this exercise. But it is not working, there might be something missing or it is wrong. #include main(){ num_values =

image text in transcribed

I've got code below for this exercise. But it is not working, there might be something missing or it is wrong.

#include

main(){

num_values = int(input("Enter a number: "))

values = []

for i in range(num_values):

value = float(input("Enter a floating point value: "))

values.append(value)

print("The sum of the values is:", sum(values))}

Lab 07 - Exercise 2. Write a program that asks the user for a number (integer) and then will read in from the user the same number of floating point values. When the user has entered the correct number of values, output the sum of those values. Example. User enters 3. Then enters 3 floating point numbers 3.4,4.7,2.4 The program will output - 10.5

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

Readings In Database Systems

Authors: Michael Stonebraker

2nd Edition

0934613656, 9780934613651

More Books

Students also viewed these Databases questions

Question

How can managers use the results of A-B-C classification?

Answered: 1 week ago

Question

Define Decision making

Answered: 1 week ago

Question

What are the major social responsibilities of business managers ?

Answered: 1 week ago

Question

What are the skills of management ?

Answered: 1 week ago