Algu ments of the double data type.object na Write a s tement that defines an ar
ID: 3724398 • Letter: A
Question
Algu ments of the double data type.object na Write a s tement that defines an array object named nunbers that can hold ten ele- tement that defines an iterator that can be used with the array object that ed in question 54. The iterators name should be it. cite a statement that defines a vecton pe. Initialize the vector with the values 10, 20, 30, 40, and S0. s of the or of nts named v. Write a statement that vector named v2 which V. 8. defined in question 56. ne eicuicins of the vector that you you defined in question 56 60. The following code defines a vector and an iterator. Rewrite the statement that defines the iterator so it uses the auto key word. vector strv {"one", "two", "three"); vector. :iterator it strv.begin(); e a stat (1, 2, 3, 4, 5) 62. The following statement defines a vector of ints named v. The vector's initial = vector: 1 n t > v contents are: 1, 2, 3, 4, 5. Write code to insert the value 999 into the vector, so its contents are: 1, 2, 999, 3, 4, 5. vector customers Write statements that use the map class's emplace member function to insert the fol lowing elements: 9001, "Jen Wi11iams" 9002, "Frank Smith 9003, "Geri Rose 65. Look at the following vector definition: vectorExplanation / Answer
Please find the answer
54->
==============================================================
Array statement
//To declare an array we specifies the type of the elements and the number of elements required by an array as follows
// define or declaration an array
double numbers[10];
// declaration and initialize of an array
double numbers[10]={ 10.0, 2.0, 3.4, 7.0, 50.0, 30.0,6.5, 6.3,1.0,8.0}
==============================================================================
Answer 55--->
------------------------------------------------------------------------------------------------------------------
// declaring array and vector for iterator
//here vector is use for iterator for an array elements
vector<double> numbers = { 10.0, 2.0, 3.4, 7.0, 50.0, 30.0,6.5, 6.3,1.0,8.0};
// Declaring iterator to a vector
vector<double>::iterator it = numbers.begin();
===============================================================================
As per chegg rule i can give only one answer and its relevant
If you have any query please first let me know i will give explanation
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.