Нужна с блок-схемами! Алгоритм есть, просто сделайте для меня блок-схему! Задание №1.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LabWork2._1
{
class MainClass
{
static double CalcIteration(double x, int n) => 1 / (n * Math.Pow(x, n));
public static void Main()
{
double current, f = 2.0, x = 3;
int n = 1;
do
{
current = CalcIteration(x, n);
f += current;
n += 2;
Console.WriteLine(current);
}
while (Math.Abs(current) > 0.0001);
Console.ReadLine();
}
}
}
Задание №2
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LabWork2_2
{
using System;
public class Program
{
public static void Main()
{
var rand = new Random();
int x = rand.Next(3, 10);
int t = 1200;
int count;
if (t % x == 0)
{
count = t / x;
}
else
{
count = t / x + 1;
}
int ans;
if (count % 20 == 0)
{
ans = count / 20;
}
else
{
ans = count / 20 + 1;
}
Console.WriteLine("ответом будет:");
Console.WriteLine(ans.ToString());
Console.ReadLine();
}
}
}