找到 2628 篇文章 关于 C#

如何使用 C# 打印二进制三角形?

Arjun Thakur
更新于 2020年6月22日 09:17:39

422 次浏览

二进制三角形由 0 和 1 组成。要创建它,您需要使用嵌套的 for 循环,并显示 0 和 1 直到输入的行数。for (int i = 1; i

如何在 C# 中打印空行?

karthikeya Boyini
更新于 2020年6月22日 09:18:05

2K+ 次浏览

要在 C# 中显示一行,请使用 Console.WriteLine()。在其中设置一个空行 - Console.WriteLine(" ");以下代码显示了一个空行 - 示例 实时演示using System; namespace Program {    public class Demo {       public static void Main(String[] args) {          Console.WriteLine(" ");          Console.WriteLine("上面显示了一条空行!");          Console.ReadLine();       }    } }输出上面显示了一条空行!

如何在 C# 中查找日期差?

Samual Sam
更新于 2020年6月22日 09:18:41

83 次浏览

要在 C# 中查找两个日期之间的差异,您需要首先使用 DateTime 对象设置要比较的两个日期。我们将使用 C# 中的 DateTime 类。日期 1DateTime date1 = new DateTime(2018, 09, 15); Console.WriteLine("日期 1 : {0}", date1);日期 2DateTime date2 = new DateTime(2018, 09, 28); Console.WriteLine("日期 2 : {0}", date2);现在让我们在 C# 中比较这两个日期。以下是在 C# 中比较日期的示例。示例 实时演示using System; namespace Program {    class Demo {       static int Main() {          DateTime date1 = new DateTime(2018, 09, 15); ... 阅读更多

如何在 C# 中查找并显示乘法表?

Chandu yadav
更新于 2020年6月22日 09:00:08

802 次浏览

要显示乘法表,您需要设置数字并设置输出格式。假设您要查找从 1 到 10 的 4 的乘法表。为此,首先设置一个 while 循环到 10。while (a

如何在 C# 中从字符串中查找子字符串?

karthikeya Boyini
更新于 2020年6月22日 09:03:24

231 次浏览

设置字符串string s = "Tom Cruise";现在假设您需要查找子字符串“Tom”,然后使用 Contains() 方法。if (s.Contains("Tom") == true) {    Console.WriteLine("找到子字符串!"); }以下代码说明了如何从字符串中查找子字符串 - 示例 实时演示using System; public class Demo {    public static void Main() {       string s = "Tom Cruise";       if (s.Contains("Tom") == true) {          Console.WriteLine("找到子字符串!");       } else {          Console.WriteLine("未找到子字符串!");       }    } }输出找到子字符串!

如何在 C# 中查找并替换字符串中的单词?

George John
更新于 2020年6月22日 09:04:03

4K+ 次浏览

首先,设置要替换的字符串。string str = "Demo text!";现在使用 replace() 方法替换上述字符串。string res = str.Replace("Demo ", "New ");以下是替换字符串中单词的完整代码。示例 实时演示using System; public class Demo {    public static void Main() {       string str = "Demo text!";       Console.WriteLine(str);       string res = str.Replace("Demo ", "New ");       Console.WriteLine("替换后...");       Console.WriteLine(res);    } }输出Demo text! 替换后... New text!

如何在 C# 中查找字符串中的数字?

Ankith Reddy
更新于 2020年6月22日 09:05:10

309 次浏览

要查找字符串中的数字,请使用正则表达式。我们已设置正则表达式模式以从字符串中获取数字。Regex r = new Regex(@"\d+");现在,使用 C# 中的 Match 类设置字符串。Match m = r.Match("Welcome! We are open 365 days in a year!");现在使用 Success 属性显示如果在字符串中找到数字的结果,如以下完整代码所示 - 示例 实时演示using System.Text.RegularExpressions; class Demo {    static void Main() {       Regex r = new Regex(@"\d+");       Match m = r.Match("Welcome! We are open ... 阅读更多

如何使用 C# 和勾股定理查找数字?

Samual Sam
更新于 2020年6月22日 09:04:37

421 次浏览

首先,设置前两个数字 - double val1, val2; val1 = 10; val2 = 5;现在使用 Math.Sqrt 函数使用勾股定理。res = Math.Sqrt(val1 * val1 + val2 * val2);示例 实时演示using System; public class Program {    public static void Main(string[] args) {       double val1, val2, res;       val1 = 10;       val2 = 5;       res = Math.Sqrt(val1 * val1 + val2 * val2);       Console.WriteLine("结果 = {0}", res);       Console.ReadLine();    } }输出结果 = 11.1803398874989

如何在 C# 中从空字符串列表中删除空字符串?

karthikeya Boyini
更新于 2020年6月22日 09:06:28

1K+ 次浏览

首先,设置一个列表,其中空字符串作为元素。List myList = new List() {    " ",    " ",    " " };现在让我们使用索引删除一个空元素。myList.RemoveAt(0);示例 实时演示using System.Collections.Generic; using System.Linq; class Program {    static void Main() {       List myList = new List() {          " ",          " ",          " "       };       Console.Write("初始列表包含空字符串...");       foreach (string list in myList) {         ... 阅读更多

如何在 C# 中从 ArrayList 中删除项目?

Arjun Thakur
更新于 2020年3月27日 10:51:33

295 次浏览

首先,设置一个新的 ArrayList 并向其中添加元素。ArrayList arr = new ArrayList(); arr.Add( "Jones" ); arr.Add( "Tom" ); arr.Add( "Henry" );现在让我们删除项目“Tom”。为此,使用 Remove() 方法。arr.Remove("Tom");以下是从 ArrayList 中删除元素的完整示例 - 示例 实时演示using System.Collections; class Demo {    static void Main(){       ArrayList arr = new ArrayList();       arr.Add( "Jones" );       arr.Add( "Tom" );       arr.Add( "Henry" );       Console.WriteLine("初始 ArrayList...");       foreach(string str in arr) {   ... 阅读更多

广告