找到 34423 篇文章 编程
7K+ 阅读量
首先,设置摄氏温度 - double celsius = 36; Console.WriteLine("Celsius: " + celsius); 现在将其转换为华氏度:fahrenheit = (celsius * 9) / 5 + 32; 您可以尝试运行以下代码将摄氏度转换为华氏度。示例实时演示 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Demo { class MyApplication { static void Main(string[] args) { double fahrenheit; double celsius = 36; Console.WriteLine("Celsius: " + celsius); fahrenheit = (celsius * 9) / 5 + 32; Console.WriteLine("Fahrenheit: " + fahrenheit); Console.ReadLine(); } } }输出摄氏度:36 华氏度:96.8
8K+ 阅读量
C# 中的基本算术运算符,包括以下 - 运算符描述 + 将两个操作数相加 - 从第一个操作数中减去第二个操作数 * 将两个操作数相乘 / 将分子除以分母 % 模运算符以及整数除法后的余数 ++ 自增运算符将整数值增加 1 -- 自减运算符将整数值减少 1 要进行加法,请使用加法运算符 - num1 + num2; 同样,它也适用于减法、乘法、除法和其他运算符。示例让我们看一个完整的示例,学习如何在 C# 中实现算术运算符。实时演示 using System; namespace Sample { class Demo { static void Main(string[] args) { int num1 ... 阅读更多
7K+ 阅读量
要在 C# 中暂停线程,请使用 sleep() 方法。您需要设置要暂停线程的毫秒数,例如,对于 5 秒,请使用 - Thread.Sleep(5000); 示例让我们看看如何循环并设置 sleep 方法来暂停线程。实时演示 using System; using System.Threading; namespace Sample { class Demo { static void Main(string[] args) { for (int i = 0; i < 10; i++) { Console.WriteLine("暂停 1 秒!"); Thread.Sleep(1000); } ... 阅读更多
4K+ 阅读量
要使用线程,请在代码中添加以下命名空间 - using System.Threading; 首先,您需要在 C# 中创建一个新线程 - Thread thread = new Thread(threadDemo); 上面,threadDemo 是我们的线程函数。现在将参数传递给线程 - thread.Start(str); 上面设置的参数是 - String str = "Hello World!"; 示例让我们看看在 C# 中将参数传递给线程的完整代码。实时演示 using System; using System.Threading; namespace Sample { class Demo { static void Main(string[] args) { String str = "Hello World!"; // 新线程 ... 阅读更多
864 阅读量
首先创建一个线程并启动它 - // 新线程 Thread thread = new Thread(c.display); thread.Start(); 现在显示线程并设置停止函数以停止线程的工作 - public void display() { while (!flag) { Console.WriteLine("正在运行"); Thread.Sleep(2000); } } public void Stop() { flag = true; } } 示例以下是学习如何在 C# 中终止线程的完整代码。实时演示 using System; using System.Threading.Tasks; using System.Threading; class Demo { static void Main(string[] args){ MyClass c = new MyClass(); ... 阅读更多
230 阅读量
对于下三角矩阵,将主对角线以上的所有元素设置为零。设置以下条件 - if (i >= j) Console.Write(A[i, j] + "\t"); else Console.Write("0\t"); 示例您可以尝试运行以下代码以显示下三角矩阵。实时演示 using System; using System.Linq; class Demo { static void Main() { int m, n, i, j; Console.Write("输入矩阵的行数和列数 "); m = Convert.ToInt16(Console.ReadLine()); n = Convert.ToInt16(Console.ReadLine()); int[, ] A = new int[10, 10]; ... 阅读更多
298 阅读量
线程的 sleep 方法用于将线程暂停特定时间段。如果要设置暂停几秒钟,则可以使用以下代码片段 - int sleepfor = 2000; Thread.Sleep(sleepfor); 示例您可以尝试运行以下代码以实现线程的 sleep 方法。实时演示 using System; using System.Threading; namespace MyApplication { class ThreadCreationProgram { public static void CallToChildThread() { Console.WriteLine("子线程开始"); int sleepfor = 2000; Console.WriteLine("子线程暂停 {0} 秒", sleepfor / 1000); ... 阅读更多
2K+ 阅读量
首先使用 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(); 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(); } }
2K+ 阅读量
假设以下为字符串 - Hello World 反转字符串后,单词应显示为 - olleH dlroW 示例使用 reverse() 方法并尝试以下代码反转字符串中的单词。实时演示 using System; using System.Linq; class Demo { static void Main() { // 原始字符串 string str = "Hello World"; // 反转字符串 string res = string.Join(" ", str.Split(' ').Select(s => new String(s.Reverse().ToArray()))); Console.WriteLine(res); } }输出olleH dlroW