博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#基础课程之二变量常量及流程控制
阅读量:6669 次
发布时间:2019-06-25

本文共 3114 字,大约阅读时间需要 10 分钟。

课堂练习:1.一个四位整数 输出它的千位,百位,十位,个位 数字。              int a = 1894;                        int b = a / 1000;                           int c = a / 100 % 10;                        int d = a / 10 % 10;                        int e = a % 10;                        Console.WriteLine("千位数" + b+" 百位数"+c +" 十位数"+d+" 个位数"+e);                               课堂练习: 2.机票预定:输出实际机票价格原价为4000元5-10月为旺季,头等舱打9折,经济舱打7.5折其他时间为淡季,头等舱打6折,经济舱打3折                int month=11;            int type = 1;            double money = 4000;             if(month>=5 && month<=10){                  if (type == 1) {                   Console.WriteLine("您的机票价格为:{0}", money * 0.9);}             else if (type == 2){            Console.WriteLine("您的机票价格为:{0}", money * 7.5);}}          else{                    if (type == 1){                 Console.WriteLine("您的机票价格为:{0}", money * 0.6);}            else if (type == 2){             Console.WriteLine("您的机票价格为:{0}", money * 0.3);}          }                    课堂练习:3.输入学员的名字输出 该学员的 姓名,专业,分数。                     string name1 = "张三", subject1 = "c#", score1 = "90";                        string name2 = "李四", subject2 = "asp.net", score2 = "95";                        Console.WriteLine("请输入学员的名称");                        string name = Console.ReadLine();                        switch (name)                        {                            case "张三":                                Console.WriteLine("{0}\t{1}\t{2}", name1, subject1, score1);                                break;                            case "李四":                                Console.WriteLine("{0}\t{1}\t{2}", name2, subject2, score2);                                break;                            default:                                Console.WriteLine("抱歉!没有你要找的学员!");                        课堂练习:4.从控制台输入数字  如果为幸运数字 提示:"中奖了 奖励。。。";如果不是幸运数字 提示 :"请 在接在励";随机数范围 1~~10;                                        Random number = new Random();                        int A = number.Next(1, 10);                        Console.WriteLine("请输入数字");                        string BB = Console.ReadLine();                        int bb = int.Parse(BB);                        int cc = bb == A ? 1 : 0;  //判断是否正确                        switch (cc)                        {                            case 1:                                Console.WriteLine("中奖了 奖励。。。");                                break;                                        default:                                Console.WriteLine("请在接在励");                                break;                        }                        Console.ReadKey();

 

 本系列教程:

http://www.cnblogs.com/spring_wang/p/6113526.html

http://www.cnblogs.com/spring_wang/p/6113496.html

http://www.cnblogs.com/spring_wang/p/6113404.html

http://www.cnblogs.com/spring_wang/p/6113383.html

 

 http://www.cnblogs.com/spring_wang/p/6113285.html

http://www.cnblogs.com/spring_wang/p/6113274.html

http://www.cnblogs.com/spring_wang/p/6113258.html

http://www.cnblogs.com/spring_wang/p/6113232.html

http://www.cnblogs.com/spring_wang/p/6113224.html

http://www.cnblogs.com/spring_wang/p/6112885.html

你可能感兴趣的文章
30行代码消费腾讯人工智能开放平台提供的自然语言处理API
查看>>
微信小程序初体验,入门练手项目--通讯录,后台是阿里云服务器
查看>>
form中只有一个input时自动提交问题
查看>>
面试官:说说快速失败和安全失败是什么
查看>>
node.js中常用的fs文件系统
查看>>
你不知道的Virtual DOM(三):Virtual Dom更新优化
查看>>
Java抽象类与接口的区别
查看>>
初始化移动样式
查看>>
在vue项目中使用vuex
查看>>
pug学习
查看>>
Java知识点总结(注解-自定义注解)
查看>>
selenium Headless Chrome/Firefox--PhantomJS停止支持后,使用无界面模式
查看>>
服务器从零开始(1D)-user+sudo+vnc
查看>>
一张图让自己搞懂(mēng)原型&原型链
查看>>
阿里云负载均衡配置的坑
查看>>
Mybatis N+1问题解析
查看>>
【MongoDB】MongoTemplate 关于 insert 和 save 函数的区别
查看>>
如何用Go访问深层嵌套的JSON数据?
查看>>
聊聊计算和这个世界(上)
查看>>
前端每日实战:75# 视频演示如何用纯 CSS 创作一支摇曳着烛光的蜡烛
查看>>