0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

JIS鋼材DBの開発記録(0)

Posted at

これからJIS鋼材DBの開発記録を日記のようにつけていこうと考える。
鋼材にはいくつかあるけど、まずは条鋼断面のインターフェイスを定義する。

IStructureSteelCrossSection.cs
    public interface IStructureSteelCrossSection
    {
        double CrossSectionArea();
        double CrossSectionRerimeter();
    }

CrossSectionAreaは鋼材断面積をcm2で返し
CrossSectionRerimeterは鋼材表面をcmで返す関数である。
これがcm2であるのは鉄鋼業界で面積はcm2だからである。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?