Wydanie R2019.06.1

This commit is contained in:
Jan Potocki
2019-06-01 14:39:21 +02:00
commit e74d77ce3b
10 changed files with 418 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
// Jan Potocki 2019
#include <stdio.h>
#include <math.h>
#include "arctgc.c"
double arctg(double x, int kroki);
const double x = 0.5;
const int n = 100;
int main()
{
double wynik_asm, wynik_c;
printf("Szereg Taylora arctg(%f) dla n=%d...\n", x, n);
wynik_asm = arctg(x, n);
wynik_c = arctgc(x, n);
printf("Wynik asm:\t%f\n", wynik_asm);
printf("Wynik C:\t%f\n", wynik_c);
return 0;
}