Guest User

Untitled

a guest
Jan 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. static void Main(string[] args)
  2. {
  3.  
  4. Console.WriteLine("Podaj x0:");
  5. double xp = Convert.ToDouble(Console.ReadLine());
  6.  
  7. Console.WriteLine("Podaj E:");
  8. double e = Convert.ToDouble(Console.ReadLine());
  9. double wyn1 = Math.Exp(xp*-1);
  10. double wyn2 = Math.Exp(wyn1 * -1);
  11.  
  12. Console.WriteLine(wyn1);
  13. Console.WriteLine(wyn2);
  14.  
  15. while ((wyn2 - wyn1) > e){
  16.  
  17. wyn1 = wyn2;
  18. Console.WriteLine(wyn1);
  19. wyn2 = Math.Exp(wyn1 * -1);
  20.  
  21. Console.WriteLine(wyn2);
  22.  
  23. }
Add Comment
Please, Sign In to add comment