找到 2628 篇文章 关于 C#
8K+ 阅读量
首先,设置包含重复元素的数组。int[] arr = { 24, 10, 56, 32, 10, 43, 88, 32 };现在声明一个字典并循环遍历数组以获取重复元素。var d = new Dictionary < int, int > (); foreach(var res in arr) { if (d.ContainsKey(res)) d[res]++; else d[res] = 1; }示例 在线演示using System; using System.Collections.Generic; namespace Demo { public class Program { public static void Main(string[] args) { int[] arr = { ... 阅读更多
11K+ 阅读量
首先,设置 12 小时制格式的日期。DateTime d = DateTime.Parse("05:00 PM");现在让我们将其转换为 24 小时制格式。d.ToString("HH:mm"));以下是如何将时间从 12 小时制转换为 24 小时制的代码 - 示例 在线演示using System; namespace Demo { public class Program { public static void Main(string[] args) { DateTime d = DateTime.Parse("05:00 PM"); Console.WriteLine(d.ToString("HH:mm")); } } }输出17:00
1K+ 阅读量
获取两个数组:int[] arr2 = new int[5]; int[] arr3 = new int[5];现在,如果数组元素除以 2 的余数为 0,则它是偶数。获取这些元素并添加到另一个数组中。这将循环遍历数组的长度:if (arr1[i] % 2 == 0) { arr2[j] = arr1[i]; }在 else 条件下,您将获得奇数元素。将它们添加到一个单独的数组中,并如以下示例所示分别显示它们:示例 在线演示using System; namespace Demo { public class Program { public static void Main(string[] args) { ... 阅读更多
4K+ 阅读量
假设您需要获取 10 美元的人民币价值。首先,设置变量:double usd, inr, val;现在设置美元并将其转换为人民币。// 多少美元 usd = 10; // 美元当前汇率 val = 69; inr = usd * val;让我们看看完整的代码 - 示例 在线演示using System; namespace Demo { public class Program { public static void Main(string[] args) { Double usd, inr, val; // 多少美元 usd = 10; // 美元当前汇率 val = 69; inr = usd * val; Console.WriteLine("{0} 美元 = {1} 人民币", usd, inr); } } }输出10 美元 = 690 人民币
449 阅读量
我们设置了一个数组和一个字典来获取不同的元素。int[] arr = { 88, 23, 56, 96, 43 }; var d = new Dictionary < int, int > ();字典集合允许我们获取列表的键和值。以下是显示给定整数数组的不同元素的代码 - 示例 在线演示using System.Collections.Generic; namespace Demo { public class Program { public static void Main(string[] args) { int[] arr = { 88, ... 阅读更多
850 阅读量
以下是我们的数组 - int[] arr = new int[] { 7, 4, 6, 2 };假设给定的整数应等于其他两个整数的和 - int res = 8;获取和并查找相等性。for (int i = 0; i < arr.Length; i++) { for (int j = 0; j < arr.Length; j++) { if (i != j) { int sum = arr[i] + arr[j]; if (sum == res) { Console.WriteLine(arr[i]); ... 阅读更多
2K+ 阅读量
声明一个列表。List < string > l = new List < string > ();现在,向列表中添加元素。// 元素 l.Add("Accessories"); l.Add("Footwear"); l.Add("Watches");现在将其转换为字符串。string str = string.Join(" ", l.ToArray());让我们看看在 C# 中将列表转换为字符串的最终代码 - 示例using System; using System.Collections.Generic; class Demo { static void Main() { List < string > l = new List < string > (); // 元素 l.Add("Accessories"); l.Add("Footwear"); l.Add("Watches"); string str = string.Join(" ", l.ToArray()); Console.WriteLine(str); } }
769 阅读量
要打印整数列表中的重复项,请使用 ContainsKey。下面,我们首先设置了整数。int[] arr = { 3, 6, 3, 8, 9, 2, 2 };然后使用 Dictionary 集合获取重复整数的计数。让我们看看获取重复整数的代码。示例 在线演示using System.Collections.Generic; namespace Demo { public class Program { public static void Main(string[] args) { int[] arr = { 3, 6, ... 阅读更多
454 阅读量
要格式化 C# 中的字符串文字,请使用 String.Format 方法。在下面的示例中,0 是对象的索引,其字符串值将插入到该特定位置 - using System; namespace Demo { class Test { static void Main(string[] args) { decimal A = 15.2 m; string res = String.Format("温度 = {0}°C。", A); Console.WriteLine(res); } } }在下面的示例中,让我们格式化双精度类型的字符串。示例 在线演示using System; class Demo { public static void Main(String[] args) { ... 阅读更多
1K+ 阅读量
要格式化 C# 中的输出,让我们看看格式化日期和双精度类型的示例。设置双精度类型的格式化输出。示例 实时演示使用 System; 类 Demo { public static void Main(String[] args) { Console.WriteLine("三位小数..."); Console.WriteLine(String.Format("{0:0.000}", 987.383)); Console.WriteLine(String.Format("{0:0.000}", 987.38)); Console.WriteLine(String.Format("{0:0.000}", 987.7899)); Console.WriteLine("千位分隔符..."); Console.WriteLine(String.Format("{0:0, 0.0}", 54567.46)); Console.WriteLine(String.Format("{0:0, 0}", 54567.46)); } }输出三位小数... 987.383 987.380 987.790 千位分隔符... 54, 567.5 54, 567设置 DateTime 的格式化输出示例 实时演示使用 System; 静态类 Demo { static void Main() ... 阅读更多