Commit a6664e2f by glkink

Add new file

parent 4245d59e
Showing with 28 additions and 0 deletions
#include <stdio.h>
#include <stdio.h>
int main(void)
{
float x, sum, d;
int i;
printf("Sisesta arv: ");
scanf(" %f", &x);
sum = 0;
d = x;
for(i = 1; i <= 21; i++)
{
if((i % 2) == 1)
{
sum = sum + d;
d = -d;
}
d = d * x / i;
}
printf("%0.3f ",sum);
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment