datum.cpp: In function 'int main()':
datum.cpp:39:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
39 | if (v[i].d < 10) cout << "0"; cout << v[i].d << ".";
| ^~
datum.cpp:39:33: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
39 | if (v[i].d < 10) cout << "0"; cout << v[i].d << ".";
| ^~~~
datum.cpp:40:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
40 | if (v[i].m < 10) cout << "0"; cout << v[i].m << ".";
| ^~
datum.cpp:40:33: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
40 | if (v[i].m < 10) cout << "0"; cout << v[i].m << ".";
| ^~~~
datum.cpp:43:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
43 | if (v[i].a < 1000) cout << "0"; cout << v[i].a << ".\n";
| ^~
datum.cpp:43:35: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
43 | if (v[i].a < 1000) cout << "0"; cout << v[i].a << ".\n";
| ^~~~