App
-
C#查找三个数字中最大值
using System; using System.Collections.Generic; using System.Linq; using System.Text; name…
-
C#转换句子中的第一个字符为大写
using System; class Demo { static String MyApplication(String str) { char []val = str.ToCh…
-
C#将华氏温度转换为摄氏温度
using System; using System.Collections.Generic; using System.Linq; using System.Text; name…
-
C#将十进制转换为二进制
using System; using System.Collections.Generic; using System.Text; namespace Demo { class …
-
C#将数字转换为单词
using System; using System.Collections.Generic; using System.Text; namespace Demo { class …
-
C#转换字符大小写
using System; using System.Collections.Generic; using System.Text; namespace Demo { class …
-
C#将二进制转换为十进制
using System; using System.Collections.Generic; using System.Text; namespace Demo { class …
-
C#将字符列表转换为字符串
using System; namespace Demo { class MyApplication { static void Main(string[] args) { cha…
-
C#检查字符串是否包含特殊字符
using System; namespace Demo { class myApplication { static void Main(string[] args) { str…
-
C#检查数字是否为素数
using System; namespace Demo { class MyApplication { public static void Main() { int n = 5…