Respuesta :

For loop to print all num vals elements of array hourlytemp. separate elements with a comma and space is

for(i = 0; i < Num_Vals; ++i){

     

      if(i < Num_Vals -1){

          cout<<hourlytemp[i]<<",";

      }

      else{

          cout<<hourlytemp[i];

      }

  }

What are elements?

An element is a discrete component of a bigger group. For instance, in computer programming, an array may include various elements (indexed), each of which may be saved and used independently.  

A web browser is instructed by an HT-ML element on how to structure and interpret a certain section of the HT-ML text. Formatting guidelines, content, and semantic meaning can all be found in HT-ML components.

To learn more about elements, use the link given
https://brainly.com/question/28813109
#SPJ4