Skip to content
Snippets Groups Projects
Commit 0528d7da authored by Nicolas M. Thiéry's avatar Nicolas M. Thiéry
Browse files

Standardisation style

parent b7ed4396
Branches
No related tags found
No related merge requests found
......@@ -2,9 +2,9 @@
using namespace std;
int main() {
int x, i;
for(i=0; i<6; i++) {
x = 2*i + 1;
int x, I1;
for ( I1 = 0; I1 < 6; I1++ ) {
x = 2*I1 + 1;
cout << x << endl;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment