[SOLVED] Write a program that creates three vector<float objects

10.00 $

Programming resource
, Digital learning resource
Categories: ,
Practical programming resource
Suitable for guided study and reference
Tutor guidance available when needed

Description

5/5 - (2 votes)

Write a program that creates three vector<float objects. Fill the first two objects with 25 floating-point numbers using a for loop as follows:

1. fill the first vector object with the loop counter value;

2. fill the second vector object with the loop counter value squared;

3. finally, write a for loop that adds the corresponding elements in the first two vectors, and puts the result in the corresponding element of the third vector.

Display all three vectors using the format “for counter; element + element = element”.

Resource details

Understand the Task Before You Use the Resource

Review the requirements, identify the programming concepts involved, study the implementation and test your understanding with your own examples and modifications.