C#基础课程之二变量常量及流程控制

课堂练习: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();        

 

 本系列教程:

C#基础总结之八面向对象知识点总结-继承与多态-接口-http://www.cnblogs.com/spring_wang/p/6113531.html

C#基础总结之七面向对象知识点总结1http://www.cnblogs.com/spring_wang/p/6113526.html

C#基础总结之六 DataTable (临时表/数据源) 和Datatable 名片练习http://www.cnblogs.com/spring_wang/p/6113520.html

C#基础总结之五Dictionary<string, string[]>和while循环http://www.cnblogs.com/spring_wang/p/6113514.html

C#基础总结之四List-Hashtable-冒泡排序http://www.cnblogs.com/spring_wang/p/6113504.html

C#基础总结之三循环控制-for-数组-乘法表-arraylisthttp://www.cnblogs.com/spring_wang/p/6113496.html

C#基础总结之二循环控制-运算符http://www.cnblogs.com/spring_wang/p/6113484.html

C#基础总结之一变量常量-if嵌套语句-witch结构-类型转换http://www.cnblogs.com/spring_wang/p/6113476.html

C#基础课程之六(临时表)DataTable使用方法http://www.cnblogs.com/spring_wang/p/6113454.html

C#基础课程之五集合(HashTable,Dictionary)http://www.cnblogs.com/spring_wang/p/6113404.html

C#基础课程之四集合(ArrayList、List<泛型>)http://www.cnblogs.com/spring_wang/p/6113396.html

C#基础课程之三循环语句http://www.cnblogs.com/spring_wang/p/6113383.html

C#基础课程之二变量常量及流程控制http://www.cnblogs.com/spring_wang/p/6113372.html

C#基础课程之一注释和控制台、一些常识http://www.cnblogs.com/spring_wang/p/6113361.html

C#基础第九天-作业答案-储蓄账户(SavingAccount)和信用账户(CreditAccount) http://www.cnblogs.com/spring_wang/p/6113291.html

C#基础第九天-作业-储蓄账户(SavingAccount)和信用账户(CreditAccount) http://www.cnblogs.com/spring_wang/p/6113285.html

C#基础第八天-作业答案-设计类-面向对象方式实现两个帐户之间转账http://www.cnblogs.com/spring_wang/p/6113274.html

C#基础第八天-作业-设计类-面向对象方式实现两个帐户之间转账http://www.cnblogs.com/spring_wang/p/6113258.html

C#基础第七天-作业答案-利用面向对象的思想去实现名片-动态添加http://www.cnblogs.com/spring_wang/p/6113232.html

C#基础第七天-作业-利用面向对象的思想去实现名片-动态添加http://www.cnblogs.com/spring_wang/p/6113224.html

C#基础第六天-作业-利用面向对象的思想去实现名片http://www.cnblogs.com/spring_wang/p/6113028.html

C#基础第六天-作业答案-利用面向对象的思想去实现名片http://www.cnblogs.com/spring_wang/p/6113033.html

C#基础第五天-作业答案-用DataTable制作名片集http://www.cnblogs.com/spring_wang/p/6113022.html

C#基础第五天-作业-用DataTable制作名片集http://www.cnblogs.com/spring_wang/p/6113013.html

C#基础第四天-作业答案-Hashtable-list<KeyValuePair>泛型实现名片http://www.cnblogs.com/spring_wang/p/6113005.html

C#基础第四天-作业-Hashtable-list<KeyValuePair>泛型实现名片http://www.cnblogs.com/spring_wang/p/6113000.html

C#基础第三天-作业答案-集合-冒泡排序-模拟名片http://www.cnblogs.com/spring_wang/p/6112888.html

C#基础第三天-作业-集合-冒泡排序-模拟名片http://www.cnblogs.com/spring_wang/p/6112885.html

C#基础第二天-作业答案-九九乘法表-打印星星http://www.cnblogs.com/spring_wang/p/6112881.html

C#基础第二天-作业-九九乘法表-打印星星http://www.cnblogs.com/spring_wang/p/6112875.html

C#基础第一天-作业答案http://www.cnblogs.com/spring_wang/p/6112872.html

C#基础第一天-作业http://www.cnblogs.com/spring_wang/p/6112867.html

C#-string.Format对C#字符串格式化http://www.cnblogs.com/spring_wang/p/6077098.html

posted @ 2016-11-29 14:03  王春天  阅读(585)  评论(0编辑  收藏  举报
云推荐