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

c#备忘录(1)

时间:2015-04-04 23:51:24      阅读:375      评论:0      收藏:0      [点我收藏+]

标签:c#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


namespace test1
{
    class Program
    {
        static void Main(string[] args)
        {
            const int x=100;
            var cc = "asfdsadf";
            Type cctype = cc.GetType();
            Console.WriteLine(x);
            Console.WriteLine(cc +":"+ cctype.ToString());
            Console.WriteLine("您好");
            for (int i = 1; i <= 9; i++)
            {
                for (int j = 1; j <= 9; j++)
                {
                    string result = string.Concat(i.ToString(), ‘*‘, j.ToString(),‘=‘,i*j);
                    Console.WriteLine(result);
                }


            }
            Console.ReadLine();
            
        }
    }

}

本博客所有内容是原创,如果转载请注明来源

http://blog.csdn.net/myhaspl/


技术分享


c#备忘录(1)

标签:c#

原文地址:http://blog.csdn.net/myhaspl/article/details/44877647

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