C#第一次作业(hallow world)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

/*namespace hallowword
{
class Program
{
static void Main(string[] args)
{
// Use the system console object
System.Console.WriteLine("Hello World!");
}
}
}*/
class Hello
{
int someVariableName;
static void Main(string[] args)
{
// Use the system console object
Console.BackgroundColor = ConsoleColor.Red;
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("Hello World!");
}
}

C#第一次作业(hallow world)_第1张图片

稍微有点理解错误,导致中间做错了一次,不过严格意义上说也没做错,不过加入颜色时候问题不大。

转载于:https://www.cnblogs.com/sunset-scarlet/p/4343034.html

你可能感兴趣的:(c/c++)