int n,P,S;
Console.WriteLine("Введите сторону квадрата");
n = Convert.ToInt32(Console.ReadLine());
P = 4 * n;
S = n * n;
Console.WriteLine("Периметр= " + P);
Console.WriteLine("Площадь= " +S);
Console.ReadLine();
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
int n,P,S;
Console.WriteLine("Введите сторону квадрата");
n = Convert.ToInt32(Console.ReadLine());
P = 4 * n;
S = n * n;
Console.WriteLine("Периметр= " + P);
Console.WriteLine("Площадь= " +S);
Console.ReadLine();