码迷,mamicode.com
首页 > Windows程序 > 详细

C#第一周

时间:2015-02-01 21:44:10      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

长字符的表示
 1 namespace ConsoleApplication6
 2 {
 3     class Program
 4     {
 5         static void Main(string[] args)
 6         {
 7             string name;//声明
 8             name = "蔡恒";//赋值
 9                 Console.WriteLine(name);//使用
10                 Console.ReadKey();
11         }
12     }
13 }

数字的加法

 1 namespace ConsoleApplication6
 2 {
 3     class Program
 4     {
 5         static void Main(string[] args)
 6         {
 7             int a =4;
 8             int b = 8;
 9             double n=a+b;
10             Console.WriteLine(n);
11             Console.ReadKey();
12 
13 
14         }
15     }
16 }

 

C#第一周

标签:

原文地址:http://www.cnblogs.com/flying-coder/p/4266055.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!