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

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)

            {

                int x=1;//循环计数变量

                      //行① 请填写计数变量的初始化语句

                while (x<=5)//行② 请填写循环条件

                {

                    Console.Write("加油!");

                    x++;//行③ 请填写计数变量的自加语句

                }

            }

        }

    }


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

    2019-07-09

  • 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--;//请输入

                }

            }

        }

    }


    查看全部
  • 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结构

    2019-07-08

  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int year = 2015;//年份

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

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

            }

        }

    }


    查看全部
  • 流程图符号:


    查看全部
  • 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 采集 收起 来源:编程练习

    2019-07-07

  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                string job = "科员";

                if (job == "局长")

                {

                    Console.WriteLine("发双黄月饼");

                }

                else if (job == "处长")

                {

                    Console.WriteLine("发蛋黄月饼");

                }

                else if (job=="科长")

                {

                    Console.WriteLine("发枣泥月饼");

                }

                else

                {

                    Console.WriteLine("发五仁月饼");

                }

            }

        }

    }


    查看全部
    0 采集 收起 来源:C#中多重if结构

    2019-07-07

  • 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("没有达到!");

                    }

                }

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                double price = 4388;//手机的售价

                double salary = 4978.67;//本月实发工资

                //请在这里补充条件判断

                if(salary>=price)

                { Console.WriteLine("这月工资够买手机!"); }

                else

                { Console.WriteLine("这月工资不够买手机!"); }


            }

        }

    }


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

    2019-07-06

  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int age = 17;//年龄

                if (age >=18)//条件,bool类型

                {//分支1

                    Console.WriteLine("你是成年人");

                }

                else

                {//分支2

                    Console.WriteLine("你是小盆友");

                }

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int score = 96;//分数

                if(score>95)//判断

                {//分支1

                    Console.WriteLine("奖励一辆自行车");

                }

                else

                {

                    Console.WriteLine("不给予奖励");

                }

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                double x = 13.9, y = 24.4;

                double sum = x + y;

                double avg = sum / 2;

                Console.WriteLine(avg);

            }

        }

    }


    查看全部
  • static void Main(string[] args)——Main方法,程序入口

    {}——书写程序

    ;——命令结束

    Console.Write("");——打印“”之间的语句

    namespace——命名空间(空间——组织和管理类)

    class Program——类+类的名字(最小单元)

    Ctrl+F5——不调试,直接运行
         

    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int x = 1;

                bool a = ++x * x > 3;

                bool b = true;//请赋值

                Console.WriteLine(a == b);

            }

        }

    }


    查看全部
  • using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                double x, y;

                x = y = 2;//从右向左赋值,x、y的值都是2

                x /= 0.5;

                y %= 2;

                Console.WriteLine(x - y);

            }

        }

    }


    查看全部

举报

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

微信扫码,参与3人拼团

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

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