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

C#开发轻松入门

难度入门
时长 4小时43分
学习人数
综合评分9.40
830人评价 查看评价
9.5 内容实用
9.5 简洁易懂
9.2 逻辑清晰
  • 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();//换行

                }

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

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

                {

                    if (x % 2 == 0)

                        continue;//添加关键字break或continue

                        Console.Write(x);

                }

            }

        }

    }


    查看全部

  • 字符类型 char ,存储用 '' (单引号)括起来的一个字符,例如:

    char sex='男';//存储性别

    字符串类型 string ,存储用“”(双引号)括起来的一串字符,例如:

    string address="北京市宣武区牛街北口";//存储地址

    整数类型 int ,存储整数,例如:

    int age=23;//存储年龄

    双精度浮点型 double ,存储小数,例如:

    double salary=7991.63;//存储工资


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

    2019-07-10

  • ?: 就是条件运算符,可以看到它有3个操作数,所以又被称为三元运算符。它的运算逻辑是:当条件表达式为 true 时,执行分支1;当条件表达式为 false 时,执行分支2。



    查看全部
  • 注意点:迭代变量只能读取,不能赋值https://img1.sycdn.imooc.com//5d25c2f5000136a903860244.jpg

    查看全部
  • foreach 循环https://img1.sycdn.imooc.com//5d25c2b000011f6103860171.jpg

    查看全部
  • 每一个 if...else 结构都包含 1 个条件和 2 个分支,而程序会根据条件的真与假,选择执行其中的某一个分支。条件必须为 bool 类型的表达式。

    查看全部
  • ==是比较运算符,大于等于小于,结果是true或false;=是赋值运算符

    查看全部
  • z中断本次循坏,进入下次循坏https://img1.sycdn.imooc.com//5d253e7f000108a403920754.jpg

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

    2019-07-10

  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

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

                {

                    if (x == 3 || x == 8)//请添加代码,过滤3和8

                        continue;

                    Console.Write(x);

                }

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                for (int x=1;x<=6;x++)//请填写for循环结构

                {

                    Console.WriteLine("Yeah!");

                }

            }

        }

    }


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

    2019-07-09

  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int x = 2;

                do

                {

                    x++;

                    Console.Write(x + " ");

                }

                while (x > 2 && x <= 4);

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                for (int x=1;x<=12;x++)//请填写代码

                {

                    Console.WriteLine(x + " ");

                }

            }

        }

    }


    查看全部
    0 采集 收起 来源:C#中for循环

    2019-07-09

  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int x = 1;

                int sum = 0;//和,初始化为0

                while (x <= 30)//循环条件

                {

                    if (x%2!=0)//筛选条件

                        sum += x;

                    x++;

                }

                Console.Write("1-30奇数的和:" + sum);

            }

        }

    }


    查看全部

举报

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

微信扫码,参与3人拼团

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

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