using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.Diagnostics;
namespace ScriptingIProject02JordanOleksiuk
{
class Program
{
static void Main(string[] args)
{
int QuizPoints = 0;
Console.WriteLine(" __ _______ __ ___ _ _ _____ _ ");
Console.WriteLine(" \ \___// /\ \ \/ \ || |/ _ /___ /\ /\__ _| | ___ ");
Console.WriteLine(" \ \|_ \ \/ \///\/|| |\// // __|//_//_` | |/ _ \ ");
Console.WriteLine("/\_/ /__) \ /\//_//|__ _/ //\__ \/__/(_| | | (_) |");
Console.WriteLine("\___/____/ \/ \/___,' |_|/____/___/ \/ /_/ \__,_|_|\___/ ");
Console.WriteLine(" ");
Console.WriteLine(" __ _ ");
Console.WriteLine(" /__\_ _| |_ _ __ __ ___ ____ _ __ _ __ _ _ __ ______ _ ");
Console.WriteLine(" /_\ \ \//__| '__/ _` \ \// _` |/ _` |/ _` | '_ \|_/_` |");
Console.WriteLine("//__ > <| |_| | | (_| |\ V/(_| | (_| | (_| | | | |//(_| |");
Console.WriteLine("\__/ /_/\_\\__|_| \__,_| \_/ \__,_|\__, |\__,_|_| |_/___\__,_|");
}
}
}
我試圖運行此程序的測試,以獲得ASCII藝術的工作,但我一直在Visual Studio中收到「無法識別的轉義序列」,表示其是下許多隨機的字符。似乎沒有一個模式,它不是我可以識別的。有些人認爲'class system.string將文本表示爲一系列Unicode字符'我是第一年電子遊戲設計的學生。所以我的知識和理解非常有限。任何援助將不勝感激。ASCII藝術造成無法識別逃生C#
謝謝你這個工作很漂亮 – J3WD4Z