開発環境
- OS: Windows 10 Pro
- IDE(統合開発環境): Visual Studio Community 2017
初めてのC# 第2版 (Jesse Liberty (著)、Brian MacDonald (著)、日向 俊二 (翻訳)、オライリージャパン)の8章(メソッド)、8.5(練習問題)、問題8-1.を取り組んでみる。
コード
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Threading; using System.IO; namespace ConsoleApp1 { class Program { static void Main(string[] args) { int a = 10; float b = 1.2f; Console.WriteLine(Doubler(a)); Console.WriteLine(Doubler(b)); } public static int Doubler(int x) { return 2 * x; } public static float Doubler(float x) { return 2 * x; } } }
入出力結果(コマンドプロンプト)
20 2.4 続行するには何かキーを押してください . . .
0 コメント:
コメントを投稿