C#第一天

namespace gowater
{
    class Program
    {
        static void Main()
        {
            var i = new List<int>();
            int age = 20;
            int b = 90;
            int result = age + b;
            double pi = 3.1415;
            float distance = 23.45F;
            decimal price = 19.90M;
            bool issunny = false;
            char c = 'C';
            string geeting = "dasdada hahah";
            string stuEdit = "asdas";
            Console.WriteLine($"{age}+{b}={result}");
        }
    }
}

  

posted @ 2026-08-05 12:47  华腾智算  阅读(5)  评论(0)    收藏  举报
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL