Write a program that uses nested loops to display the following lines

```
1 2 4 6
2 2 4 6
3 2 4 6
4 2 4 6
```


```
for (int i = 1; i <= 4; ++i) {
cout << i;
for (int j = 2; j <= 6; j += 2)
cout << " "<< j;
cout << endl;
}
]
```

Computer Science & Information Technology

You might also like to view...

When we run a parameter query, the ________ dialog box will show up

Fill in the blank(s) with correct word

Computer Science & Information Technology

A(n) ________ is a graphic representation of trends in a data series

Fill in the blank(s) with correct word

Computer Science & Information Technology

You should revise the creative brief if your design implementation changes

Indicate whether the statement is true or false

Computer Science & Information Technology

Changing the font _________________________ makes the selected text larger or smaller.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology