为了账号安全,请及时绑定邮箱和手机立即绑定

C#开发轻松入门

难度入门
时长 4小时43分
学习人数
综合评分9.40
830人评价 查看评价
9.5 内容实用
9.5 简洁易懂
9.2 逻辑清晰
  • 两个数相除或相乘得到的数与精确度最高的类型一样

    查看全部
  • char 字符类型 储存用单引号

    string 字符串类 储存用双引号

    查看全部
    0 采集 收起 来源:C#的数据类型

    2019-07-03

  • 给字符串变量赋值的时候需要加上""号双引号


    查看全部
    0 采集 收起 来源:C#的变量

    2019-07-03

  • 程序没有给出,直接判断运行结果吗

    查看全部
    0 采集 收起 来源:练习题

    2019-07-03

  • using System;using System.Collections.Generic;using System.Text;namespace projGetMaxScore{    class Program    {        static void Main(string[] args)        {            string[] names = new string[] {"吴松","钱东宇","伏晨","陈陆",                "周蕊","林日鹏","何昆","关欣"};            int[] scores = new int[] {89,90,98,56,60,91,93,85};            int max = 0;            int index = 0;            for(int i = 0;i<scores.Length;i++)            {                if(scores[i] > max)                {                    max = scores[i];                    index = i;                }            }            Console.WriteLine("分数最高的是{0},分数是{1}",names[index],max);        }    }}


    查看全部
    1 采集 收起 来源:练习题目

    2019-07-02

  • 1111111

    查看全部
    0 采集 收起 来源:编程练习

    2019-07-02

  • using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int age = 4;//年龄

                if (age < 6 ||  age > 60)

                    Console.WriteLine("请坐爱心座!");

                else

                    Console.WriteLine("请坚持一下!");

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                Console.WriteLine(true || false);//输出True

                Console.WriteLine(true && false);//输出False

                Console.WriteLine(!false);//输出True

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                double x = 3.5;

                int y = 3;

                Console.WriteLine((int)x == y);

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int x = 5;

                int y = 5;

                int z = 5;

                x++;

                Console.Write(x);

                Console.Write(++y);

                Console.Write(++z);

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int year = 2015;//年份

                Console.WriteLine(year%4);//求年份除以4的余数

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                double salary = 6000.00;//基本工资

                double prize = 3200.00;//奖金

                double tax = 4500.00;//交税

                Console.Write("我的工资奖金总额是{0}元", salary+ prize);

                Console.Write("我的税后收入是{0}元", salary+ prize- tax);

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int _num1 = 5;//第一个加数

                int _num2 = 7;//第二个加数

                int sum=_num1+_num2;//求和

                Console.WriteLine("和是{0}",sum);//打印结果

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                double d = 2.5;

                int x = (int)d + 1;

                Console.WriteLine(x);

            }

        }

    }


    查看全部
    0 采集 收起 来源:C#的类型转换

    2019-06-30

  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                string today;//今天的午饭

                string tomorrow;//明天的午饭

                today = "鱼香肉丝";

                tomorrow = "小鸡炖蘑菇";

                //请在这里补充代码,实现变量today和tomorrow的交换

                string temp;

                temp = today;

                today = tomorrow;

                tomorrow = temp;

                //打印

                Console.WriteLine("我今天吃{0},明天吃{1}。", today, tomorrow);

            }

        }

    }


    查看全部
    0 采集 收起 来源:编程练习

    2019-06-30

举报

0/150
提交
取消
课程须知
本课程是C#基础课程,热烈欢迎各位小伙伴拍砖吐槽!!
老师告诉你能学到什么?
1、C#的基本概念 2、Visual Studio的使用技巧 3、C#的语法和程序逻辑

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!