• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#练习记录(统计字符串中的字符数和计算最大值)

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

请用户输入一个字符串,计算字符串中的字符个数,并输出

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication7
{
    
    class Program
    {
        static void Main(string[] args)
        {
            string strs;
            Console.WriteLine("请输入一个字符串");
            strs = Console.ReadLine();
            Console.WriteLine("刚才输入的字符串的内容是{0},字符个数为{1}", strs,strs.Length);
            Console.ReadKey();



        }
    }
}

 

 

用方法来实现:计算两个数的最大值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication7
{
    class Fa
    {
        public static int Max(int a, int b)
        {
            if (a > b)
                return a;
            else
                return b;
        }

    }
    class Program
    {
        static void Main(string[] args)
        {
            int a;
            int b;
            Console.WriteLine("请分别输入两个数的值");
            a = Convert.ToInt32(Console.ReadLine());
            b = Convert.ToInt32(Console.ReadLine());
            Console.Write("输入的两个数的值分别为a={0}, b={1}", a, b);
            Console.WriteLine("它们的最大值为max={0}",Fa.Max(a, b));
            Console.ReadKey();


        }
    }
}

  计算多个数的最大值

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication7
{
    class Fa
    {
        public static int Max(params int[] a1)
        {  int max=-111;
        for (int i=0;i<a1.Length;i++)
         if(a1[i]>max)
             max=a1[i];
        return max;

       
        }

    }
    class Program
    {
        static void Main(string[] args)
        {
              int[] a = { 23, 45, 36, 34, 35 };
            Console.WriteLine("它们分别为");
            for (int i = 0; i < a.Length; i++)
            {
                Console.Write("{0} ", a[i]);
            }
            Console.WriteLine("它们的最大值为max={0}",Fa.Max(23,45,36,34,35));
           Console.WriteLine("他们的最大值为max={0}",Fa.Max(a));
              
            Console.ReadKey();


        }
    }
}

实现结果

 

 

 

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#多线程详解发布时间:2022-07-13
下一篇:
[C#基础知识]委托详解发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap