using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Piirtoavut { public interface IKoko { double Ala { get; } double KehänPituus { get; } void Pienennä(double prosenttia); void Suurenna(double prosenttia); } }