2017年12月15日金曜日

開発環境

初めてのC# 第2版 (Jesse Liberty (著)、Brian MacDonald (著)日向 俊二 (翻訳)、オライリージャパン)の8章(メソッド)、8.5(練習問題)、問題8-1.を取り組んでみる。

コード

using System;

namespace Sample8_1
{
    class Sample
    {
        public int Double(int n)
        {
            return 2 * n;
        }
        public float Double(float n)
        {
            return 2 * n;
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
            Sample s = new Sample();
            int a = 10;
            float b = 1.2f;

            Console.WriteLine("int型: {0}\nfloat型: {1}",
                              s.Double(a), s.Double(b));
            
        }
    }
}

入出力結果(Terminal)

int型: 20
float型: 2.4

Press any key to continue...

0 コメント:

コメントを投稿