開発環境
- OS: macOS High Sierra - Apple
- IDE(統合開発環境): Visual Studio for Mac
初めてのC# 第2版 (Jesse Liberty (著)、Brian MacDonald (著)、日向 俊二 (翻訳)、オライリージャパン)の3章(C# 言語の基礎)、3.10(練習問題)、問題3-2.を取り組んでみる。
コード
using System; namespace Sample31 { class Program { static void Main(string[] args) { int a = 5; float b = 1.2f; double c = 3.4; char d = 'C'; Console.WriteLine("{0}\n{1}\n{2}\n{3}\n", a, b, c, d); a = 10; b = 3.4f; c = 5.6; d = '#'; Console.WriteLine("{0}\n{1}\n{2}\n{3}\n", a, b, c, d); } } }
入出力結果(Terminal)
5 1.2 3.4 C 10 3.4 5.6 # -bash: /var/folders/jg/y5d0zx4n1c9644tjrmn90jpc0000gn/T/tmp2837a260.tmp: cannot overwrite existing file Press any key to continue...
0 コメント:
コメントを投稿