10 lines
112 B
C++
10 lines
112 B
C++
#include <iostream>
|
|
|
|
int main(){
|
|
|
|
int a[] = { 0, 1, 2, 3, 4, 5 };
|
|
for (int n : a)
|
|
std::cout << n << ' ';
|
|
|
|
}
|