zoukankan      html  css  js  c++  java
  • 09.22函数,三局两胜

     //猜拳,三局两胜无返回值
            //public void caiquan()
            //{
            //    int count = 0;
            //    for (int k = 1; k <=3; k++)
            //    {Console.Write("a=");
            //        int i = int.Parse(Console.ReadLine());
                    
                    
                    
            //        Console.Write("b=");
                    
            //        int j = int.Parse(Console.ReadLine());
                    
                    
                    
            //        if (i - j == -2 || i - j == 1)
            //        {
    
            //            count++;
            //        }
            //        else if (i - j == 0)
            //        {
    
            //            k--;
            //            continue;
            //        }
            //        else
            //        { }
                    
            //    }
    
            //    if (count >= 2)
            //    { Console.Write("三局两胜a赢了"); }
            //    else
            //    { Console.Write("三局两胜b赢了"); }
            //}
    
            //static void Main(string[] args)
            //{
    
             
            //    new Program().caiquan();
    
            //    Console.ReadLine();
    
    
    
    
            //猜拳三局两胜,有返回值
            public string caiquan()
            {
                string s;
                int count = 0;
                    for (int k = 1; k <=3; k++)
                    {Console.Write("a=");
                        int i = int.Parse(Console.ReadLine());
     
                        Console.Write("b=");
    
                        int j = int.Parse(Console.ReadLine());
    
    
    
                        if (i - j == -2 || i - j == 1)
                        {
    
                            count++;
                        }
                        else if (i - j == 0)
                        {
    
                            k--;
                            continue;
                            
                        }
                        else
                        { }
    
                    }
    
                    if (count >= 2)
                    {  s="三局两胜a赢了"; }
                    else
                    {  s="三局两胜b赢了"; }
    
             return s;  
            }
           
            static void Main(string[] args)
            {
    
                string c = new Program().caiquan();
                Console.WriteLine(c );
                Console.ReadLine();
  • 相关阅读:
    three.js-texture
    three.js-binary operator
    three.js-model
    three.js-bone
    JS时间戳
    JQUERY删除操作
    Synchronized和Static Synchronized区别
    JQUERY 保存成功后又下角动态提示
    jquery from提交和post提交
    防止多次领取红包进行ID锁
  • 原文地址:https://www.cnblogs.com/cf924823/p/4829095.html
Copyright © 2011-2022 走看看