找到 2628 篇文章,关于 C#

C# 程序:将字符串中的所有空格替换为“%20”

karthikeya Boyini
更新于 2020年6月19日 11:33:45

2K+ 次浏览

我们有一个包含空格的示例字符串 - str ="Hello World !"; 使用 C# 中的 Replace() 方法将字符串中的所有空格替换为“%20” - str2 = str.Replace(" ", "%20"); 示例您可以尝试运行以下代码将字符串中的所有空格替换为“%20”。在线演示using System; class Demo { static void Main() { String str, str2; str ="Hello World !"; Console.WriteLine("字符串: "+str); str2 = str.Replace(" ", "%20"); Console.WriteLine("字符串(替换后): "+str2); } }输出字符串: Hello World ! 字符串(替换后): Hello%20World%20!

C# 程序:查找三个已排序数组中的公共元素

Samual Sam
更新于 2020年1月28日 08:13:58

215 次浏览

首先,初始化三个已排序的数组 - int []one = {20, 35, 57, 70}; int []two = {9, 35, 57, 70, 92}; int []three = {25, 35, 55, 57, 67, 70}; 要查找三个已排序数组中的公共元素,请使用 while 循环遍历数组,并检查第一个数组与第二个数组,以及第二个数组与第三个数组 - while (i < one.Length && j < two.Length && k < three.Length) { if (one[i] == two[j] && two[j] == three[k]) { Console.Write(one[i] + " "); i++;j++;k++; } else if (one[i] < two[j]) ... 阅读更多

C# 程序:显示主机名和 IP 地址

karthikeya Boyini
更新于 2020年6月19日 11:35:28

1K+ 次浏览

要查找主机名,请在 C# 中使用 Dns.GetHostName() 方法 - String hostName = string.Empty; hostName = Dns.GetHostName(); Console.WriteLine("主机名: "+hostName); 现在,使用 IPHostEntry.AddressList 属性获取 IP 地址 - IPHostEntry myIP = Dns.GetHostEntry(hostName); IPAddress[] address = myIP.AddressList; 示例尝试以下代码以显示主机名和 IP 地址 - using System; using System.Net; class Program { static void Main() { String hostName = string.Empty; hostName = Dns.GetHostName(); Console.WriteLine("主机名: "+hostName); IPHostEntry myIP = Dns.GetHostEntry(hostName); IPAddress[] address = myIP.AddressList; for (int i = 0; i < address.Length; i++) { Console.WriteLine("IP 地址 {1} : ",address[i].ToString()); } Console.ReadLine(); } }

C# 程序:查找链表中的节点

Samual Sam
更新于 2020年6月19日 10:52:04

475 次浏览

首先,创建一个新的链表 - LinkedList myList = new LinkedList(); 现在在链表中添加一些元素 - // 在链表中添加 6 个元素 myList.AddLast("P"); myList.AddLast("Q"); myList.AddLast("R"); myList.AddLast("S"); myList.AddLast("T"); myList.AddLast("U"); 现在让我们找到一个节点并在其后添加一个新节点 - LinkedListNode node = myList.Find("R"); myList.AddAfter(node, "ADDED"); 示例您可以尝试运行以下代码以查找链表中的节点。在线演示using System; using System.Collections.Generic; class Program { static void Main() { LinkedList myList = new LinkedList(); // 在链表中添加 6 个元素 myList.AddLast("P"); ... 阅读更多

C# 程序:统计给定字符串中大写和小写字符的个数

karthikeya Boyini
更新于 2020年6月19日 10:52:36

1K+ 次浏览

要统计字符串中大写字符的个数,请检查以下条件 - myStr[i]>='A' && myStr[i]<'Z'; 要统计小写字符的个数,请检查以下条件 - myStr[i]>='a' && myStr[i]<'z';

C# 程序:查找字符串中的所有子字符串

Samual Sam
更新于 2020年6月19日 10:57:17

2K+ 次浏览

在 C# 中使用 substring() 方法查找字符串中的所有子字符串。假设我们的字符串是 - Xyz 循环遍历字符串的长度,并从字符串的开头到结尾使用 Substring 函数 - for (int start = 0; start <

C# 程序:显示输入数字的因数

karthikeya Boyini
更新于 2020年6月19日 11:15:47

1K+ 次浏览

首先,输入要查找因数的数字 - Console.WriteLine("输入数字:"); n = int.Parse(Console.ReadLine()); 之后,循环查找因数 - for (i = 1; i <

C# 程序:显示线程的优先级

Samual Sam
更新于 2020年6月19日 11:16:52

303 次浏览

要在 C# 中显示线程的优先级,请使用 Priority 属性。首先,使用 currentThread 属性显示有关线程的信息 - Thread thread = Thread.CurrentThread; 现在使用 thread.Priority 属性显示线程的优先级 - thread.Priority 示例让我们看看在 C# 中显示线程优先级的完整代码。在线演示using System; using System.Threading; namespace Demo { class MyClass { static void Main(string[] args) { Thread thread = Thread.CurrentThread; thread.Name = "我的线程"; Console.WriteLine("线程优先级 = {0}", thread.Priority); Console.ReadKey(); } } }输出线程优先级 = Normal

C# 程序:显示当前线程的名称

karthikeya Boyini
更新于 2020年6月19日 11:17:38

183 次浏览

要在 C# 中显示当前线程的名称,请使用 Name 属性。首先,使用 currentThread 属性显示有关线程的信息 - Thread thread = Thread.CurrentThread; 现在使用 thread.Name 属性显示线程的名称 - thread.Name 示例让我们看看在 C# 中显示当前线程名称的完整代码。在线演示using System; using System.Threading; namespace Demo { class MyClass { static void Main(string[] args) { Thread thread = Thread.CurrentThread; thread.Name = "我的线程"; Console.WriteLine("线程名称 = {0}", thread.Name); Console.ReadKey(); } } }输出线程名称 = 我的线程

C# 程序:统计字符串中元音的个数

Samual Sam
更新于 2020年6月19日 11:25:55

8K+ 次浏览

您需要检查元音和辅音,但不要忘记同时检查大写和小写字母。要统计元音,请分别检查“aeiou”字符,即 if (myStr[i] == 'a' || myStr[i] == 'e' || myStr[i] == 'i' || myStr[i] == 'o' || myStr[i] == 'u' || myStr[i] == 'A' || myStr[i] == 'E' || myStr[i] == 'I' || myStr[i] == 'O' || myStr[i] == 'U') { vowel_count++; } 示例以下是统计字符串中元音个数的代码。在线演示using System; public class Demo { public static void Main() { ... 阅读更多

广告