• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

練習用です。いろんなものがごちゃまぜです。


Commit MetaInfo

Revision111 (tree)
Time2015-12-31 14:11:23
Authorbellyoshi

Log Message

Change Summary

Incremental Difference

--- tanosii/chap01/chap03/Program.cs (revision 110)
+++ tanosii/chap01/chap03/Program.cs (revision 111)
@@ -10,6 +10,8 @@
1010 {
1111 static void Main(string[] args)
1212 {
13+ list1.start(args);
14+ Console.ReadKey();
1315 }
1416 }
1517 }
--- tanosii/chap01/chap03/list1.cs (nonexistent)
+++ tanosii/chap01/chap03/list1.cs (revision 111)
@@ -0,0 +1,19 @@
1+using System;
2+using System.Collections.Generic;
3+using System.Linq;
4+using System.Text;
5+using System.Threading.Tasks;
6+
7+namespace chap03
8+{
9+ class list1
10+ {
11+ public static void start(string[] args)
12+ {
13+ Console.WriteLine($"3+2={3 + 2}");
14+ Console.WriteLine($"3-2={3 - 2}");
15+ Console.WriteLine($"3*2={3 * 2}");
16+ Console.WriteLine($"3/2={3 / 2}");
17+ }
18+ }
19+}