開発環境
- OS: macOS High Sierra - Apple
- IDE(統合開発環境): Visual Studio for Mac
- プログラミング言語: C#
初めての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 コメント:
コメントを投稿