using System; namespace ConsoleApp2 { class Program { static void Main(string[] args) { double d = 0; for(int i = 99; i >= 3; i = i - 3) { d = Math.Sqrt(d) + i; } Console.WriteLine(Math.Sqrt(d)); } } } Code using System; namespace ConsoleApp2 { class Program { static void Main(string[] args) { double d = 0; for(int i = 99; i >= 3; i = i - 3) { d = Math.Sqrt(d) + i; } Console.WriteLine(Math.Sqrt(d)); } } }
Ещё не проверял, но уверен , что работает, я тебе жизнью обязан The post was merged to previous Oct 7, 2019 https://prnt.sc/pg2drl Помогите с ошибкой разобраться The post was merged to previous Oct 7, 2019 #include <math.h> using namespace std; int main() { int i,d; double d = 0; for(int i = 99; i >= 3; i = i - 3); { d = Math.Sqrt(d) + i; } printf(Math.Sqrt(d)); } Остановился тут , но дофига ошибок