Archived
1
0

Initial commit

This commit is contained in:
2025-10-24 17:19:46 +08:00
Unverified
commit acc0c9e220
155 changed files with 77369 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
using System;
namespace ConsoleApp1
{
class HelloWorld
{
static void Main()
{
char ch=Console.ReadKey();
if (Char.ToUpper(ch)<= 'A' && Char.ToUpper(ch)<='Z')
{
if (ch >= 'A' && ch <= 'Z')
{
Console.WriteLine("{0}是大写字母", ch);
}
else
{
Console.WriteLine("{0}是小写字母", ch);
}
}
else if ()
}
}
}