Advertisement
EvgeniiKraaaaaaaav

2.7(SqrtNewtonMethod)

Dec 5th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.37 KB | None | 0 0
  1. //https://vk.com/evgenykravchenko0
  2.  
  3.                 ___                                        ___                   ___    
  4.                /  /\                  ___                 /  /\                 /  /\    
  5.               /  /:/_                /__/\               /  /:/_               /  /:/_  
  6.              /  /:/ /\               \  \:\             /  /:/ /\             /  /:/ /\  
  7.             /  /:/ /:/_               \  \:\           /  /:/_/::\           /  /:/ /:/_
  8.            /__/:/ /:/ /\          ___  \__\:\         /__/:/__\/\:\         /__/:/ /:/ /\
  9.            \  \:\/:/ /:/         /__/\ |  |:|         \  \:\ /~~/:/         \  \:\/:/ /:/
  10.             \  \::/ /:/          \  \:\|  |:|          \  \:\  /:/           \  \::/ /:/
  11.              \  \:\/:/            \  \:\__|:|           \  \:\/:/             \  \:\/:/  
  12.               \  \::/              \__\::::/             \  \::/               \  \::/  
  13.                \__\/                   ~~~~               \__\/                 \__\/    
  14.                             ___                                            
  15.                            /__/\                ___                 ___    
  16.                            \  \:\              /  /\               /  /\    
  17.                             \  \:\            /  /:/              /  /:/    
  18.                         _____\__\:\          /__/::\             /__/::\    
  19.                        /__/::::::::\         \__\/\:\__          \__\/\:\__
  20.                        \  \:\~~\~~\/            \  \:\/\            \  \:\/\
  21.                         \  \:\  ~~~              \__\::/             \__\::/
  22.                          \  \:\                  /__/:/              /__/:/
  23.                           \  \:\                 \__\/               \__\/  
  24.                            \__\/                        
  25. #include <stdio.h>
  26. float Method_Newt_sqrt(float x, float now, float next)
  27. {
  28.   if (now - next > 0.00001)
  29.   {
  30.     now = next;
  31.     next = (now + x / now) / 2.0f;
  32.     return Method_Newt_sqrt(x, now, next);
  33.   }
  34.   else
  35.     return next;
  36. }
  37.  
  38. int main()
  39. {
  40.   float x;
  41.   float y;
  42.   float sqr;
  43.   float next;
  44.  
  45.   printf("Введите значение x : ");
  46.   scanf("%f", &x);
  47.  
  48.   y = x / 2.0f;
  49.   next = (y + x / y) / 2.0f;
  50.   sqr = Method_Newt_sqrt(x, y, next);
  51.  
  52.   printf("Корень из %.0f = %.5f\n", x, sqr);
  53.  
  54.   return 0;
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement