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

C#开发轻松入门

难度入门
时长 4小时43分
学习人数
综合评分9.40
830人评价 查看评价
9.5 内容实用
9.5 简洁易懂
9.2 逻辑清晰
  • 关键字都是小写的

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

    2018-05-14

  • static表示“静态的”。 string表示“字符串”数据类型。 using常常写在类的前面,用来引用其他命名空间中的类

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

    2018-05-14

  • 循环访问一组数据,从中找出符合条件的数据,这样的算法叫做查找

    写查找的算法,需要做 2 件事,一是写循环访问每一个数据,二是对每一个数据进行验证。这样,就需要写 2 个“条件”:循环条件和筛选条件。


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

    2018-05-12

  • 55a773260001fe2308400263.jpg

    查看全部
  • 了解了 foreach 循环的语法,你可能会有疑问:好像 foreach 循环能做的 for 都能做, foreach 存在的意义是什么呢?其实,C#中还存在一些类似于数组的数据组织方式,它们中有一些是没有元素索引的,对于这些元素,只能通过 foreach 遍历。

    查看全部
  • 55a76a4b0001f5ba06520186.jpg

    查看全部
  • 55a7200f000117ac08720261.jpg

    查看全部
  • 数据类型[ ] 数组名 = new 数据类型[长度]; 

    注意:数组名像变量名一样要遵循标识符的命名规则;长度必须是整数

    数组经过初始化以后,数组元素有默认的初始值, double 类型为 0.0 , int 类型为 0 , char 类型为 'a' , bool 类型为 false , string 类型为 null 。

    数组.Length 属性会返回数组的长度(即数组元素的个数)


    查看全部
  • https://img1.sycdn.imooc.com//5af652dc0001615b03200299.jpg

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

    2018-05-12

  • https://img1.sycdn.imooc.com//5af64b0e00013ab903220294.jpg

    查看全部
  • 嵌套循环至少包含 2 层循环,外层的循环体执行一次,内层的循环体则执行 n 次,内层体被执行的总次数 = 内层循环次数 * 外层循环次数

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

    2018-05-12

  • 算法-查找

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int[] score = { 85,76,98,100,62,60};//分数

                bool hasNopass = false;//记录是否有不及格的,默认没有

                for (int i = 0; i < score.Length; i++)

                {

                    if (score[i] < 60)//如果有不及格的

                    {

                        //记录有不及格的

                        hasNopass = true;

                        break;

                        

                    }

                }

                if (hasNopass)

                    Console.WriteLine("有人不及格");

                else

                    Console.WriteLine("都及格啦!");

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                for (int y = 1; y <= 7; y++)

                {

                    for (int x = 1; x <= y; x++)

                    {

                        Console.Write(x);

                    }

                    Console.WriteLine();//换行

                }

            }

        }

    }


    查看全部
  • ///是文档注释,只能写在类、方法、属性的前面。不能用来注释单个变量。

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

    2018-05-11

  • using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Text;


    namespace ConsoleApplication27

    {

        class Program

        {

            static void Main(string[] args)

            {

                int[] num = new int[] { 30, 97, 99,50, 75, 60, 90, 80 };

                string[] name = new string[] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };

     

                int max = num[0];

                string MaxName =name[0] ;

                int index = 0;

                for (int i = 1; i < num.Length; i++)

                {

                    if (num[i] > max)

                    {

                        max = num[i];


                        index = i;

                        MaxName=name[i];

                    }

                }

                Console.WriteLine("分数最高的是{0},分数是{1}", MaxName,max);

                Console.ReadKey();

            }

        }

    }


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

    2018-05-11

举报

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

微信扫码,参与3人拼团

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

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