当前位置:   article > 正文

C#(C Sharp)学习笔记_三个经典算法题【十四】

C#(C Sharp)学习笔记_三个经典算法题【十四】

冒泡排序

using System;
namespace Prosose
{
    public class Fibonacci
    {
        static void Main(string[] args)
        {
            int[] array = new int[] {3, 5, 1, 8, 6, 4, 33, 13, 26, 13};
            int temp;

            for(int a = 0; a < array.Length - 1; a ++)
            {
                for(int i = 0; i < array.Length -1; i ++)
                {
                    if (array[i] > array[i + 1])
                    {
                        temp = array[i];
                        array[i] = array[i + 1];
                        array[i + 1] = temp;
                    }
                }
            }
            foreach (int Recursive in array)
            {
                Console.Write(Recursive + ",");
            }
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29

3n + 1问题

using System;
namespace Prosose
{
    public class Fibonacci
    {
        static void Main(string[] args)
        {
            int a = 7;
            int again = 0;

            while (true)
            {
                if (a % 2 == 0)
                {
                    a /= 2;
                    if (a < 2)
                    {
                        Console.WriteLine("\n" + "一共运行了" + again + "次");
                        break;
                    }
                }
                else
                {
                    a *= 3;
                    a += 1;
                }
                again ++;
            Console.Write(a + ", ");

            }
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

九九乘法表

using System;
namespace Prosose
{
    public class Fibonacci
    {
        static void Main(string[] args)
        {
            int k = 0;
            for(int a = 0; a < 10; a ++)
            {
                k ++;
                
                for(int b = 1; b < k; b ++)
                {
                    Console.Write(b + "*" + a + "=" + a*b + "  ");
                }
                Console.WriteLine("");
            }
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/540918
推荐阅读
相关标签
  

闽ICP备14008679号