ПРОШУ ПОМОГИТЕ!!!!!! На языке C#(сейшар). Помогите прошу!!!
Answers & Comments
redgrejv10
Using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace Пробы { class Program { static void Main(string[] args) { int Pi = 3; //можно просто использовать Math.PI int r; float S; int diam; Console.WriteLine("Введите радиус купола парашюта"); r = int.Parse(Console.ReadLine()); S=Pi*(r*r); diam = r * r; Console.WriteLine("На купол парашюта с диаметром "+ diam +"м, потребуется {0} м^2 шелка", S); Console.ReadKey(); } } }
0 votes Thanks 1
redgrejv10
да, получилось, при радиусе 2 м расход будет 12м^2
Answers & Comments
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Пробы
{
class Program
{
static void Main(string[] args)
{
int Pi = 3; //можно просто использовать Math.PI
int r;
float S;
int diam;
Console.WriteLine("Введите радиус купола парашюта");
r = int.Parse(Console.ReadLine());
S=Pi*(r*r);
diam = r * r;
Console.WriteLine("На купол парашюта с диаметром "+ diam +"м, потребуется {0} м^2 шелка", S);
Console.ReadKey();
}
}
}