📅  最后修改于: 2023-12-03 14:39:21.346000             🧑  作者: Mango
C# 是一种现代、通用的编程语言,用于开发 Windows 应用程序、Web 应用程序、游戏、移动应用程序等。C# 是 Microsoft 公司开发的一种面向对象的编程语言,是 .NET 框架中的主要语言之一。
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
int age = 30;
string name = "John";
double price = 19.99;
bool isTrue = true;
for (int i = 0; i < 10; i++)
{
Console.WriteLine(i);
}
while (isTrue)
{
Console.WriteLine("Hello World!");
}
do
{
Console.WriteLine("Hello World!");
} while (isTrue);
if (age >= 18)
{
Console.WriteLine("You are an adult.");
}
else
{
Console.WriteLine("You are a child.");
}
switch (mark)
{
case 90:
Console.WriteLine("Excellent!");
break;
case 80:
Console.WriteLine("Good!");
break;
default:
Console.WriteLine("Pass!");
break;
}