• C#数据类型


    基本数据类型包括:

    string               System.String        Unicode字符序列

    decimal              System.Decimal       有28位小数的高度精度浮点数

    bool                 System.Boolean       true或false

    char                 System.Char          16位Unicode字符

    byte                 System.Byte          8位无符号整型

    int                  System.Int32         32位有符号整型

    long                 System.Int64         64位有符号整型

    single(float)        System.Single        单精度浮点类型

    double               System.Double        双精度浮点类型

    每个后加; 结束

    int a = 1;

    bool b =true;         或者flase

    double f=1.3;   浮点型

    string  g ="abc";         必须加双引号

    float h =1.3f;         必须加f    f值没意义只是为了区分double

    decimal i =1.3m;        常用于经济类

    long j =1L;            相当于大int

    DateTime dt = new DateTime();    不放定义一个空的    放年月日

    char k='a';       必须是单引号     是一个字符  单引号内只能放一个字符

    byte l =12;      整形  相当于小int

    Console.WriteLine(a);     写一个东西进去

    Console.ReadLine();         读一个东西进去      

    string str =Console.ReadLine();  定义一个string     读完后返回给string

    Console.WriteLine(str); 吧str写进去

    Console.ReadLine();

  • 相关阅读:
    决策树简介
    机器学习一百天-day7/11-KNN
    机器学习100天-day4,5,6,8逻辑回归
    机器学习一百天-day3多元线性回归及虚拟变量陷阱分析
    机器学习100天-day2简单线性回归
    机器学习100天-day1数据预处理
    sklearn.preprocessing.Imputer
    vue echart 中国地图 疫情图
    一周笔记
    js基础操作与方法
  • 原文地址:https://www.cnblogs.com/skyhorseyk/p/6956148.html
Copyright © 2020-2023  润新知