美文网首页
C#基础入门篇(2)

C#基础入门篇(2)

作者: 答泡浴 | 来源:发表于2017-08-03 12:44 被阅读0次

    using System;

    namespace scendDay_17_8_3

    {

    class MainClass

    {

    public static void Main (string[] args)

    {

    Console.WriteLine ("Hello World!");

    //读取一个字符,随意按下一个字符后终止输入操作

    // int n = Console.Read ();

    // Console.WriteLine ("刚刚输入N的值为{0}", n);

    //读取字符串,按回车结束输入操作2;

    // string sir = Console.ReadLine();

    // Console.WriteLine ("刚刚输入sir的值为"+sir);

    // Console.Write("你好\n");//\n换行符

    // Console.WriteLine("刚刚");

    //类型转化

    // 隐试转化,强制转化

    // float a=1f;

    // double b = 1.2f;

    //强制转化

    // a=(float)b;

    // int c = (int)1.7f;

    //字符串转换成int值 字符串应为纯数字 若有字母则会失败

    // string num="123";

    // int d = int.Parse (num);

    //获取内存占用 bytes(字节)  > bits(位,比特)  1:8的比例

    // Console.WriteLine("int->{0}",sizeof(Int16));

    //运算符

    // + - * / % += -=  >  <  >=  <= ++ -- ?: &&(与) ||(或) !(非)

    // & | ^  << >>

    // int a=1, b=2, c=3;

    // int b=2;

    // int c=3;

    // float d=1.0f;

    //强转

    // int e = a + (int)d;

    //c=c-a == c-=a

    //比较

    //int a=34, b=45;

    int a=1;

    //a++;//a=a+1;

    //a--;//a=a-1;

    }

    }

    }

    相关文章

      网友评论

          本文标题:C#基础入门篇(2)

          本文链接:https://www.haomeiwen.com/subject/qoqplxtx.html