This repository has been archived on 2026-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
pants/cpp/arrays.cpp
2026-03-18 00:46:30 -07:00

10 lines
173 B
C++

#include <iostream>
using namespace std;
int main() {
int numbers[] = {2,4,8,16};
for (int number : numbers) {
cout << number << endl;
}
return 0;
}