Advertisement
Guest User

a

a guest
Dec 14th, 2019
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. #include <fstream>
  3.  
  4. using namespace std;
  5. ifstream in("cercuri.in");
  6. //team 1 problema algoritm clasic + alg probabilist+alg de aproximare+ algoritm aprox pt problema detet cercului in care sa se afle un punct din n puncte date
  7. // 2 acelasi dr pt problema detet pct nemo
  8. // provocare scrietii functii pt sin cos tg ctg log radical exponent(ca alg de aproximare) si masurati eficienta
  9. //sugestii formula lui taylor
  10. //tibisicadu@gmail.com
  11. // @yahoo.com
  12. int n,k;
  13. struct punct
  14. {
  15. int x,y;
  16. }p[100];
  17.  
  18. void citire(punct p[100],int &n,int &k)
  19. {
  20. in>>n>>k;
  21. for(int i=1;i<=n;i++)
  22. {
  23. in>>p.x;
  24. in>>p.y;
  25. }
  26. }
  27. void rezolvare(int )
  28. int main()
  29. {
  30.  
  31. return 0;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement