Advertisement
Guest User

inunet

a guest
Sep 19th, 2014
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication2
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. double y;
  13. double x;
  14. Console.WriteLine("Введите x");
  15. x = Convert.ToDouble(Console.ReadLine());
  16. if (x < -4)
  17. {
  18. Console.WriteLine("Значение функции = 0");
  19. }
  20. else
  21.  
  22. if (x > -4 && x <= 0);
  23. {
  24. y = x/4;
  25. Console.WriteLine("Значение функции = y");
  26. }
  27.  
  28.  
  29. Console.ReadKey();
  30.  
  31. }
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement