diff --git a/src/main.cpp b/src/main.cpp index 6c11677..566c39e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,12 +1,12 @@ #include -int main() { - - auto max_value = 100; +int main() +{ + auto the_max_value = 100; int total = 0; - for (int i = 0; i < max_value; ++i) { - total += i; + for (int v = 0; v < the_max_value; ++v) { + total += v; } std::cout << "Total: " << total << std::endl;