using System;
namespace ConsoleApp4
{
class Program
{
static void Main()
{
int attempts = 1;
Random r = new Random();
int x = r.Next(11);
Console.WriteLine("Ok. I made a guess. Now you have 3 attempts.");
for (int i=0; i < 3; ++i)
{
Console.WriteLine($"Attepmt #{attempts}");
if (int.Parse(Console.ReadLine()) == x)
{
Console.WriteLine($"Congrutialations! You got it!\nIt really was number: {x}\nAttempts passed: {attempts}\nTry again? y/n");
if (Console.ReadLine() == "y")
{
Console.Clear();
Main();
return;
}
return;
}
Console.WriteLine("Nope.");
attempts++;
}
Console.WriteLine($"You lose.\nIt was: {x}\nTry again? y/n", x);
if (Console.ReadLine() == "y")
{
Console.Clear();
Main();
return;
}
}
}
}
Поделитесь своими знаниями, ответьте на вопрос:
Составить алгоритм и программу для вычисления значения функции f по формулам: sqrt(ab)/3(a+b)^2 - при a> 0, b> 0 (pascal)
program p1;
var a, b, F: real;
begin
writeln('Введите A >> ');
readln(a);
writeln('Введите b >> ');
readln(b);
if (a>0) and (b>0.0) then
begin
F:=sqrt(a*b)/3*sqr(a+b);
writeln('F(a,b)='+F);
end
else
writeln('Ошибка. A<0 или B<0');
end.