2017年12月4日月曜日

開発環境

初めてのC# 第2版 (Jesse Liberty (著)、Brian MacDonald (著)日向 俊二 (翻訳)、オライリージャパン)の4章(演算子)、4.6(練習問題)、練習4-3.を取り組んでみる。

コード

using System;

class Program
{
    static void Main(string[] args)
    {
        int a1, a2, b1, b2;
        a1 = a2 = 10;

        b1 = ++a1;
        b2 = a2++;

        Console.WriteLine("{0}\n{1}\n{2}\n{3}",
                          a1, a2, b1, b2);
    }
}

入出力結果(Terminal)

11
11
11
10
-bash: /var/folders/jg/y5d0zx4n1c9644tjrmn90jpc0000gn/T/tmp6064cb35.tmp: cannot overwrite existing file

Press any key to continue...

0 コメント:

コメントを投稿