Advertisement
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._1
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.Write("Введите n: ");
- int n = int.Parse(Console.ReadLine());
- double b1 = 1;
- double b2 = 0;
- Console.Write("{0}; ", b1);
- for (int i = 1; i < n; i++)
- {
- b2 = 0.2 * Math.Pow(b1, 4) + 1;
- Console.Write("{0}; ", b2);
- b1 = b2;
- }
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement