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

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 <= 7; x++)

                    {

                        Console.Write(x);

                    }

                 if(x==y) Console.WriteLine();//换行

                }

            }

        }

    }

    查看全部
  • 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循环

    2021-07-16

  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int y = 5;

                while (y>=1)//请输入

                {

                    Console.Write(y+" ");

                 y--; //请输入

                }

            }

        }

    }

    查看全部
  • C#中的switch,每个分支都应该以break;结束,break的作用是跳出switch结构。但是,如果某个分支中没有语句,那么也可以不写break;

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

    2021-07-14

  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                string job = "处长";//职务

                switch (job)

                {

                     case "局长": Console.Write("发双黄月饼"); break;

                     case "处长": Console.Write("发蛋黄月饼"); break;

                     case "科长": Console.Write("发枣泥月饼"); break;

                    default:Console.Write("发五仁月饼"); break;

                }

            }

        }

    }

    查看全部
    0 采集 收起 来源:C#的switch结构

    2021-07-14

  • switch 中的(变量)只能是3种类型:整型(如 int )、字符型( char )、字符串类型( string )。

    查看全部
    0 采集 收起 来源:C#的switch结构

    2021-07-14

  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int year = 2015;//年份

                string text;

                text=year%4==0?"闰年":"平年";//请填写代码

                Console.WriteLine("今年是{0}",text);

            }

        }

    }

    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int year = 2015;//年份

                string text;

                text=(year%4==0)?"闰年":"平年";//请填写代码

                Console.WriteLine("今年是{0}",text);

            }

        }

    }

    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                double money = 60000.00;//存款金额

                 if(money>=100000) 

                Console.WriteLine("送一台微波炉");

              else if (money>=50000) 

                Console.WriteLine("送一套茶具");

              else if (money>=10000) 

                Console.WriteLine("送一袋大米");

              else Console.WriteLine("没有礼品");//请在这里补充多重条件判断


            }

        }

    }

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

    2021-07-14

  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int x = 5;

                int y = 6;

                if (x >= y)

                   { if (x >= 5)

                        Console.WriteLine("5");}

                else

                   { if (y >= 6)

                        Console.WriteLine("6");

                    else

                        Console.WriteLine("7");}

            }

        }

    }

    查看全部
  • 当出现多个 if 和 else ,又没有{}来界定范围时,请参考下面2条原则:

    ①每一个 else 与前面离它最近的 if 配对。按照这个原则,上面示例代码的两个 else 都与第二个 if 配对,这显然是不可能的,于是又有了第二个原则。

    ②多个 else 都与同一个 if 相近时,最内层的 else 优先配对。这样,第一个 else 处于内层,就与第二个 if 优先配对,第二个 else 只能与第一个 if 配对。上面的示例代码会输出“C”。

    查看全部
  • 编写条件结构时,尽可能加上 {} 可以省掉不必要的错误和麻烦

    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                char sex='男';//性别

                int age = 21;//年龄

                if(sex=='女')//请填写条件

                {

                    if (age >= 20)

                    {

                        Console.WriteLine("达到法定婚龄啦");

                    }

                    else

                    {

                        Console.WriteLine("没有达到哟");

                    }

                }

                else

                {

                    if (age >= 22)

                    {

                        Console.WriteLine("达到法定婚龄!");

                    }

                    else

                    {

                        Console.WriteLine("没有达到!");

                    }

                }

            }

        }

    }

    查看全部
  • 外层的if (userName == "admin") 会被首先判断,如果为 false ,就会输出“用户名错误!”;如果为 true ,再判断内层的if (password == "bj2022")。

     

    查看全部
  • 关键字大小写,中文标点符号!

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

    2021-07-11

举报

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

微信扫码,参与3人拼团

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

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