Respuesta :

Answer:

In c++ programming language.

for(int i=4;i<=44;i+=8)

{

   cout<<i<<" ";

}

The loop that will print the following exactly 4 12 20 28 36 44 is

for x in range(4, 45, 8):

   print(x)

Notice the common difference of the sequence is 8.

The code is written in python.

The first line of the code, we use a for loop to loop through the range of a number from 4 to 45 (45 excluded).

The first outputted number in the loop will be 4, then we add 8 to get the next number until we get to 44.

The bolded value in the code are python keywords.

read more; https://brain ly.com/question/18898733?referrer=searchResults

Ver imagen vintechnology