mirror of
https://github.com/reactos/CMake.git
synced 2024-12-04 09:54:15 +00:00
13 lines
172 B
C++
13 lines
172 B
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int ac, char** av)
|
|
{
|
|
float d = 10.0;
|
|
for(int i =0; i < atoi(av[1]); i++)
|
|
{
|
|
d *= .2;
|
|
}
|
|
printf("%f", d);
|
|
}
|