diff options
Diffstat (limited to 'Tests/JCTest/TestTime.cxx')
-rw-r--r-- | Tests/JCTest/TestTime.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Tests/JCTest/TestTime.cxx b/Tests/JCTest/TestTime.cxx index 5768ab5..b98e1d3 100644 --- a/Tests/JCTest/TestTime.cxx +++ b/Tests/JCTest/TestTime.cxx @@ -4,9 +4,8 @@ int main(int ac, char** av) { float d = 10.0; - for(int i =0; i < atoi(av[1]); i++) - { + for (int i = 0; i < atoi(av[1]); i++) { d *= .2; - } + } printf("%f", d); } |