using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FundemantalsProject
{
public class Rectangle
{
public double width;
public double height;
public double GetArea() {
return width * height;
}
}
}
Dosyayı İndir