Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace _4._3
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.Write("Введите k: ");
- int k = int.Parse(Console.ReadLine());
- double s = 0;
- for (int i = 1; i <= k; i++)
- {
- s += Math.Pow(-1, i+1) / Math.Pow(i,2);
- }
- Console.WriteLine("{0}", s);
- Console.ReadKey();
- }
- }
- }
Add Comment
Please, Sign In to add comment