首页 > Windows开发 > 详细

c#备忘录(1)

时间:2015-04-04 23:49:09      阅读:372      评论:0      收藏:0      [点我收藏+]
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)

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!