Sign in
cmake
/
cmake
/
76f08a107b344daff524974868ab30353bd9b255
/
.
/
Tests
/
JCTest
/
TestTime.cxx
blob: b98e1d31e5a96215f4b82723032936595228fbaa [
file
] [
log
] [
blame
]
#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
);
}